Marco Blessing
a686be9055
* force dark mode * add node based build * add markdown lint * fix markdown lint issues * add custom caddy file * fix page lookup for error page * disable pagination * adjus trivy behavior * exclude mardkownlint from docker build * fix trivy step and add umami tracking code * set data-domain to exclude forks adding stats
16 lines
450 B
Docker
16 lines
450 B
Docker
FROM node:lts-buster-slim as builder
|
|
COPY . /src
|
|
#RUN ls -la
|
|
WORKDIR /src
|
|
#RUN ls -a
|
|
RUN npm install \
|
|
&& npm run build
|
|
|
|
FROM caddy:2.4.6-alpine
|
|
LABEL maintainer="marco.blessing@googlemail.com"
|
|
COPY --from=builder /src/Caddyfile /etc/caddy/Caddyfile
|
|
COPY --from=builder src/public /usr/share/caddy/
|
|
HEALTHCHECK --interval=15s --timeout=3s \
|
|
CMD wget --no-verbose --tries=1 --spider http://localhost:8080/ || exit 1
|
|
#RUN ls -la /usr/share/caddy/
|