diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..3bf9c2b --- /dev/null +++ b/Dockerfile @@ -0,0 +1,27 @@ +FROM golang:alpine as builder + +COPY . /go/src/github.com/Luzifer/mapshare/frontend +WORKDIR /go/src/github.com/Luzifer/mapshare/frontend + +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 " + +RUN set -ex \ + && apk --no-cache add \ + ca-certificates + +COPY --from=builder /go/bin/frontend /usr/local/bin/frontend + +EXPOSE 3000 + +ENTRYPOINT ["/usr/local/bin/frontend"] +CMD ["--"] + +# vim: set ft=Dockerfile: