Files
scottyah-blog/Dockerfile
2022-07-31 16:39:41 -07:00

9 lines
202 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
EXPOSE 1313:1313
CMD ["hugo", "server", "--bind", "0.0.0.0", "-D"]