7 lines
147 B
Docker
7 lines
147 B
Docker
FROM docker.io/hugomods/hugo:latest AS build
|
|
WORKDIR /src
|
|
COPY . .
|
|
RUN hugo
|
|
|
|
FROM nginx:alpine
|
|
COPY --from=build /src/public /usr/share/nginx/html |