Files
website/Dockerfile

12 lines
242 B
Docker
Raw Permalink Normal View History

2026-07-02 00:28:25 -07:00
FROM ghcr.io/gohugoio/hugo:v0.163.3 AS build
WORKDIR /src
COPY . .
RUN hugo --minify --cleanDestinationDir
FROM nginx:1.27-alpine
COPY --from=build /src/public /usr/share/nginx/html
COPY nginx.conf /etc/nginx/conf.d/default.conf
2026-07-02 00:28:25 -07:00
EXPOSE 80