11 lines
192 B
Docker
11 lines
192 B
Docker
|
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
|