1
0
Fork 0
mirror of https://github.com/Luzifer/mapshare.git synced 2024-11-08 21:20:01 +00:00
mapshare/Dockerfile
Knut Ahlers 273af6a6d7
Fix broken Dockerfile
Signed-off-by: Knut Ahlers <knut@ahlers.me>
2020-01-07 00:58:37 +01:00

27 lines
560 B
Docker

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