1
0
mirror of https://github.com/danog/gojekyll.git synced 2024-11-26 21:24:41 +01:00
gojekyll/Dockerfile
Oliver Steele 319d3c4aeb Docker
2017-07-15 17:03:27 -04:00

19 lines
363 B
Docker

FROM golang:1.8.3-alpine
ADD . /go/src/github.com/osteele/gojekyll
RUN \
apk add --update gcc g++ git make python py-pip && \
pip install Pygments && \
cd $GOPATH/src/github.com/osteele/gojekyll && \
go get -v && \
make install && \
rm -rf /var/cache/apk/* && \
rm -rf $GOPATH/src/*
EXPOSE 4000
ENTRYPOINT ["/go/bin/gojekyll"]
CMD [ "--help" ]