mirror of
https://github.com/Luzifer/ots.git
synced 2024-12-12 09:04:36 -05:00
1a91a5d34d
Signed-off-by: Knut Ahlers <knut@ahlers.me>
26 lines
486 B
Docker
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:
|