discord-community/Dockerfile

31 lines
642 B
Docker
Raw Permalink Normal View History

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