ots/Dockerfile.minimal
Knut Ahlers a645290a21
Add minimal Dockerfile without alpine base
closes #5

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2019-08-03 20:22:40 +02:00

24 lines
476 B
Docker

FROM golang:alpine as builder
ENV CGO_ENABLED=0
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 scratch
LABEL maintainer "Knut Ahlers <knut@ahlers.me>"
COPY --from=builder /go/bin/ots /usr/local/bin/ots
EXPOSE 3000
ENTRYPOINT ["/usr/local/bin/ots"]
CMD ["--"]
# vim: set ft=Dockerfile: