AddDockerfiles #9

Merged
jeff merged 2 commits from AddDockerfiles into master 2020-04-10 23:56:59 +00:00
Showing only changes of commit 541bc6f4c7 - Show all commits

11
Dockerfile.dev Normal file
View File

@ -0,0 +1,11 @@
FROM golang:alpine
# This should be mounted with docker run command
WORKDIR /src
# Build and run hugo
ENV GO111MODULE=on
RUN go get -u github.com/gohugoio/hugo@v0.69.0
# Run the development server
ENTRYPOINT cd /src && hugo server