Compare commits
No commits in common. "56d1d08c705b82238964a4217afa452f9b93f202" and "3ba8295d8c01ef5779a52c82d6ea8067ad3ce4a4" have entirely different histories.
56d1d08c70
...
3ba8295d8c
|
|
@ -20,7 +20,7 @@
|
|||
</head>
|
||||
|
||||
<body class='page {{layout.bodyClass}}'>
|
||||
<div id="wrapper" class="wrapper mb-3">
|
||||
<div id="wrapper" class="wrapper">
|
||||
{% include header.html headerClass='header-extra' %}
|
||||
{{content}}
|
||||
</div>
|
||||
|
|
|
|||
|
|
@ -1,5 +1,7 @@
|
|||
.feature {
|
||||
height: 100%;
|
||||
border: 1px solid $white-offset;
|
||||
border-radius: 3px;
|
||||
padding: 20px;
|
||||
background-color: #ffffff;
|
||||
display: flex;
|
||||
|
|
|
|||
|
|
@ -3,8 +3,8 @@
|
|||
|
||||
// Colors
|
||||
$primary: #FDB515;
|
||||
$primary-dark: darken($primary, 10%);
|
||||
$secondary: darken($primary, 20%);
|
||||
$primary-dark: #a01b16;
|
||||
$secondary: #f88379;
|
||||
$black: #2f2f41;
|
||||
$white: #ffffff;
|
||||
$white-offset: #fff6f8;
|
||||
|
|
@ -119,7 +119,3 @@ body {
|
|||
code {
|
||||
color: #000;
|
||||
}
|
||||
|
||||
a {
|
||||
color: #dd9902;
|
||||
}
|
||||
|
|
|
|||
|
|
@ -1,4 +1,4 @@
|
|||
FROM git.hswro.org/fleg/serve_base:caddy
|
||||
FROM git.hswro.org/fleg/serve_base:latest
|
||||
|
||||
# Copy the static website
|
||||
# Use the .dockerignore file to control what ends up inside the image!
|
||||
|
|
|
|||
|
|
@ -1,7 +1,9 @@
|
|||
FROM caddy:2.9
|
||||
FROM busybox:stable
|
||||
|
||||
RUN echo -e ":3000 {\n\
|
||||
root * /var/www\n\
|
||||
file_server\n\
|
||||
}" > /etc/caddy/Caddyfile
|
||||
WORKDIR /var/www
|
||||
# Create a non-root user to own the files and run our server
|
||||
RUN adduser -D static
|
||||
USER static
|
||||
WORKDIR /home/static
|
||||
|
||||
# Run BusyBox httpd
|
||||
CMD ["busybox", "httpd", "-f", "-v", "-p", "3000"]
|
||||
|
|
|
|||
Loading…
Reference in New Issue