Compare commits
3 Commits
3ba8295d8c
...
56d1d08c70
| Author | SHA1 | Date |
|---|---|---|
|
|
56d1d08c70 | |
|
|
f4a5bdb047 | |
|
|
9a89a956f6 |
|
|
@ -20,7 +20,7 @@
|
||||||
</head>
|
</head>
|
||||||
|
|
||||||
<body class='page {{layout.bodyClass}}'>
|
<body class='page {{layout.bodyClass}}'>
|
||||||
<div id="wrapper" class="wrapper">
|
<div id="wrapper" class="wrapper mb-3">
|
||||||
{% include header.html headerClass='header-extra' %}
|
{% include header.html headerClass='header-extra' %}
|
||||||
{{content}}
|
{{content}}
|
||||||
</div>
|
</div>
|
||||||
|
|
|
||||||
|
|
@ -1,7 +1,5 @@
|
||||||
.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;
|
||||||
|
|
|
||||||
|
|
@ -3,8 +3,8 @@
|
||||||
|
|
||||||
// Colors
|
// Colors
|
||||||
$primary: #FDB515;
|
$primary: #FDB515;
|
||||||
$primary-dark: #a01b16;
|
$primary-dark: darken($primary, 10%);
|
||||||
$secondary: #f88379;
|
$secondary: darken($primary, 20%);
|
||||||
$black: #2f2f41;
|
$black: #2f2f41;
|
||||||
$white: #ffffff;
|
$white: #ffffff;
|
||||||
$white-offset: #fff6f8;
|
$white-offset: #fff6f8;
|
||||||
|
|
@ -119,3 +119,7 @@ body {
|
||||||
code {
|
code {
|
||||||
color: #000;
|
color: #000;
|
||||||
}
|
}
|
||||||
|
|
||||||
|
a {
|
||||||
|
color: #dd9902;
|
||||||
|
}
|
||||||
|
|
|
||||||
|
|
@ -1,4 +1,4 @@
|
||||||
FROM git.hswro.org/fleg/serve_base:latest
|
FROM git.hswro.org/fleg/serve_base:caddy
|
||||||
|
|
||||||
# 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!
|
||||||
|
|
|
||||||
|
|
@ -1,9 +1,7 @@
|
||||||
FROM busybox:stable
|
FROM caddy:2.9
|
||||||
|
|
||||||
# Create a non-root user to own the files and run our server
|
RUN echo -e ":3000 {\n\
|
||||||
RUN adduser -D static
|
root * /var/www\n\
|
||||||
USER static
|
file_server\n\
|
||||||
WORKDIR /home/static
|
}" > /etc/caddy/Caddyfile
|
||||||
|
WORKDIR /var/www
|
||||||
# Run BusyBox httpd
|
|
||||||
CMD ["busybox", "httpd", "-f", "-v", "-p", "3000"]
|
|
||||||
|
|
|
||||||
Loading…
Reference in New Issue