blog/Dockerfile

12 lines
238 B
Text
Raw Normal View History

2022-09-08 20:55:59 +00:00
FROM docker.io/alpine:latest as builder
WORKDIR /src
2022-12-23 14:10:41 +00:00
COPY . /src/
2022-09-08 20:55:59 +00:00
RUN apk add -U hugo && \
2022-12-23 14:10:41 +00:00
hugo --minify --environment production --config config.toml
2022-09-08 20:55:59 +00:00
FROM docker.io/caddy:2-alpine
COPY --from=builder /src/public /usr/share/caddy