www.franconian.net/Dockerfile

10 lines
191 B
Docker

FROM alpine:3.12
RUN apk add --no-cache hugo git
WORKDIR /var/www/html
VOLUME /var/www/html
EXPOSE 1313
ENTRYPOINT ["hugo", "serve", "--bind", "0.0.0.0", "--watch", "--disableFastRender"]