ots/Dockerfile.minimal
Knut Ahlers 1a91a5d34d
Update Dockerfiles
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-01-24 16:17:09 +01:00

26 lines
486 B
Docker

FROM golang:alpine as builder
ENV CGO_ENABLED=0
COPY . /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 --always || echo dev)" \
-mod=readonly
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: