mirror of
https://github.com/tiennm99/miti99.git
synced 2026-09-17 10:20:12 +00:00
16 lines
216 B
Docker
16 lines
216 B
Docker
FROM peaceiris/hugo:v0.124.0-full AS builder
|
|
|
|
WORKDIR /site
|
|
|
|
COPY . .
|
|
|
|
RUN hugo --gc --minify
|
|
|
|
FROM nginx:alpine
|
|
|
|
COPY --from=builder /site/public /usr/share/nginx/html
|
|
|
|
EXPOSE 80
|
|
|
|
CMD ["nginx", "-g", "daemon off;"]
|