8 lines
No EOL
154 B
Docker
8 lines
No EOL
154 B
Docker
FROM hugomods/hugo:0.120.4 as builder
|
|
|
|
COPY ./src /src
|
|
RUN hugo --minify --enableGitInfo
|
|
|
|
FROM hugomods/hugo:nginx
|
|
|
|
COPY --from=builder /src/public /site |