9 lines
163 B
Docker
9 lines
163 B
Docker
FROM hugomods/hugo:latest AS builder
|
|
|
|
WORKDIR /app
|
|
COPY . .
|
|
|
|
RUN cd src && hugo build
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=builder /app/src/public /usr/share/nginx/html
|