garden/Dockerfile

14 lines
203 B
Docker

FROM alpine as builder
COPY . /opt/
WORKDIR /opt
RUN apk add --no-cache hugo && \
hugo --verbose --minify --enableGitInfo
FROM nginx
COPY --from=builder /opt/public /usr/share/nginx/html
EXPOSE 80