7 lines
No EOL
185 B
Docker
7 lines
No EOL
185 B
Docker
FROM hugomods/hugo:exts as hugo
|
|
COPY . /src
|
|
RUN hugo --minify
|
|
|
|
FROM nginx:alpine-slim
|
|
COPY --from=hugo /src/public /usr/share/nginx/html
|
|
COPY default.conf /etc/nginx/conf.d/default.conf |