Files

16 lines
307 B
Docker
Raw Permalink Normal View History

2026-02-12 14:38:32 +01:00
# ── Build ──
FROM hugomods/hugo:latest AS builder
WORKDIR /src
COPY ./hugo/eliaskohout.de .
RUN hugo --minify
# ── Serve ──
2025-09-28 19:28:43 +02:00
FROM alpine:latest
WORKDIR /www
2026-02-12 14:38:32 +01:00
COPY --from=builder /src/public /www
2025-09-28 19:28:43 +02:00
RUN apk add --no-cache busybox-extras
EXPOSE 80
CMD ["httpd", "-f", "-p", "80", "-h", "/www"]