Initial version

This commit is contained in:
Knut Ahlers 2016-01-12 13:20:04 +01:00
commit 9d2eb591aa

22
Dockerfile Normal file
View File

@ -0,0 +1,22 @@
FROM golang
MAINTAINER Knut Ahlers <knut@luzifer.io>
ENV VERSION master
ENV GOPATH /go:/go/src/github.com/thoas/picfit/vendor
ENV GO15VENDOREXPERIMENT 1
RUN mkdir -p /go/src/github.com/thoas \
&& git clone https://github.com/thoas/picfit.git /go/src/github.com/thoas/picfit
WORKDIR /go/src/github.com/thoas/picfit
RUN git checkout ${VERSION} \
&& go install
VOLUME ["/config"]
EXPOSE 3001/tcp
ENTRYPOINT ["/go/bin/picfit"]
CMD ["-c", "/config/config.json"]