8 lines
185 B
Docker
8 lines
185 B
Docker
FROM floryn90/hugo:0.155.1-alpine AS builder
|
|
WORKDIR /src
|
|
USER root
|
|
COPY hugo /src
|
|
RUN hugo --minify
|
|
|
|
FROM nginx:1.28.0-alpine-slim
|
|
COPY --from=builder /src/public /usr/share/nginx/html |