Dockerize

Signed-off-by: Knut Ahlers <knut@ahlers.me>
This commit is contained in:
Knut Ahlers 2017-08-03 20:09:18 +02:00
parent 5e3d84df9b
commit e4aa39d971
No known key found for this signature in database
GPG Key ID: DC2729FDD34BE99E

16
Dockerfile Normal file
View File

@ -0,0 +1,16 @@
FROM golang:alpine
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
ADD . /go/src/github.com/Luzifer/ots
WORKDIR /go/src/github.com/Luzifer/ots
RUN set -ex \
&& apk add --update git ca-certificates \
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)" \
&& apk del --purge git
EXPOSE 3000
ENTRYPOINT ["/go/bin/ots"]
CMD ["--"]