riefolo.me/Dockerfile

11 lines
192 B
Docker
Raw Normal View History

2024-09-20 08:00:39 +00:00
FROM alpine:3.20 AS build
WORKDIR /app
COPY . .
RUN apk add --no-cache hugo=0.125.4-r3 && hugo --minify
FROM nginx:1.27.1 AS production
COPY --from=build /app/public /usr/share/nginx/html