Files
rezepte/Dockerfile

14 lines
312 B
Docker
Raw Permalink Normal View History

2024-12-14 16:34:28 +01:00
# Compile the hugo site
2025-03-26 12:29:25 +01:00
FROM hugomods/hugo:std-ci AS builder
WORKDIR /app
COPY ./hugo .
2025-03-14 20:05:22 +01:00
RUN hugo --minify --destination ./public
2024-12-14 16:34:28 +01:00
# Setup deployment
FROM alpine:latest
WORKDIR /www
2025-03-14 20:05:22 +01:00
COPY --from=builder /app/public /www
RUN apk add --no-cache busybox-extras
EXPOSE 80
CMD ["httpd", "-f", "-p", "80", "-h", "/www"]