ots/Dockerfile
Knut Ahlers 017e6e4879
Update Dockerfile to multi-stage build
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2018-05-05 18:15:43 +02:00

25 lines
517 B
Docker

FROM golang:alpine as builder
ADD . /go/src/github.com/Luzifer/ots
WORKDIR /go/src/github.com/Luzifer/ots
RUN set -ex \
&& apk add --update git \
&& go install -ldflags "-X main.version=$(git describe --tags || git rev-parse --short HEAD || echo dev)"
FROM alpine:latest
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
RUN set -ex \
&& apk --no-cache add ca-certificates
COPY --from=builder /go/bin/ots /usr/local/bin/ots
EXPOSE 3000
ENTRYPOINT ["/usr/local/bin/ots"]
CMD ["--"]
# vim: set ft=Dockerfile: