Add dockerfile for dev.

This commit is contained in:
russoj88 2020-04-10 16:52:14 -07:00
parent 4bf28cf211
commit 541bc6f4c7

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