Compare commits

..

No commits in common. "56d1d08c705b82238964a4217afa452f9b93f202" and "3ba8295d8c01ef5779a52c82d6ea8067ad3ce4a4" have entirely different histories.

5 changed files with 14 additions and 14 deletions

View File

@ -20,7 +20,7 @@
</head> </head>
<body class='page {{layout.bodyClass}}'> <body class='page {{layout.bodyClass}}'>
<div id="wrapper" class="wrapper mb-3"> <div id="wrapper" class="wrapper">
{% include header.html headerClass='header-extra' %} {% include header.html headerClass='header-extra' %}
{{content}} {{content}}
</div> </div>

View File

@ -1,5 +1,7 @@
.feature { .feature {
height: 100%; height: 100%;
border: 1px solid $white-offset;
border-radius: 3px;
padding: 20px; padding: 20px;
background-color: #ffffff; background-color: #ffffff;
display: flex; display: flex;

View File

@ -3,8 +3,8 @@
// Colors // Colors
$primary: #FDB515; $primary: #FDB515;
$primary-dark: darken($primary, 10%); $primary-dark: #a01b16;
$secondary: darken($primary, 20%); $secondary: #f88379;
$black: #2f2f41; $black: #2f2f41;
$white: #ffffff; $white: #ffffff;
$white-offset: #fff6f8; $white-offset: #fff6f8;
@ -119,7 +119,3 @@ body {
code { code {
color: #000; color: #000;
} }
a {
color: #dd9902;
}

View File

@ -1,4 +1,4 @@
FROM git.hswro.org/fleg/serve_base:caddy FROM git.hswro.org/fleg/serve_base:latest
# Copy the static website # Copy the static website
# Use the .dockerignore file to control what ends up inside the image! # Use the .dockerignore file to control what ends up inside the image!

View File

@ -1,7 +1,9 @@
FROM caddy:2.9 FROM busybox:stable
RUN echo -e ":3000 {\n\ # Create a non-root user to own the files and run our server
root * /var/www\n\ RUN adduser -D static
file_server\n\ USER static
}" > /etc/caddy/Caddyfile WORKDIR /home/static
WORKDIR /var/www
# Run BusyBox httpd
CMD ["busybox", "httpd", "-f", "-v", "-p", "3000"]