www.franconian.net/Dockerfile

10 lines
191 B
Docker
Raw Permalink Normal View History

FROM alpine:3.12
2020-12-02 00:12:24 +01:00
RUN apk add --no-cache hugo git
WORKDIR /var/www/html
VOLUME /var/www/html
EXPOSE 1313
2020-11-23 22:53:05 +01:00
ENTRYPOINT ["hugo", "serve", "--bind", "0.0.0.0", "--watch", "--disableFastRender"]