Files
website/Dockerfile
Akshay Kolli e240b99cb2
All checks were successful
Deploy Website / build-and-deploy (push) Successful in 1m44s
Initial website deployment
2026-07-02 00:28:25 -07:00

11 lines
195 B
Docker

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
EXPOSE 80