Files
scottyah-blog/Dockerfile
2022-07-31 17:21:01 -07:00

9 lines
215 B
Docker

FROM alpine:latest
RUN apk add --no-cache git hugo
RUN git clone https://github.com/scottyah/scottyah-blog.git
WORKDIR scottyah-blog/hugo-content
EXPOSE 1313:1313
CMD ["hugo", "server", "--bind", "0.0.0.0", "-D"]