Dockerfile 241 B

12345678
  1. FROM klakegg/hugo:ext-alpine AS builder
  2. WORKDIR /src
  3. COPY . /src
  4. RUN hugo --minify --destination /tmp/public
  5. FROM nginx:1.27-alpine
  6. COPY deploy/nginx.conf /etc/nginx/conf.d/default.conf
  7. COPY --from=builder /tmp/public /usr/share/nginx/html