Compare commits

..

No commits in common. "0aaa190769c24f28f9e35f5fc1c680f9d3c1f33f" and "9099ac39b45c07f058eea1256b0b00cd820664ca" have entirely different histories.

2 changed files with 0 additions and 13 deletions

View File

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

View File

@ -1,4 +0,0 @@
## Docker for local development and testing
1. Build Docker image: `docker build -t hugo .`
2. Run container: `docker run --rm -v $PWD:/var/www/html -p 8080:1313 hugo`