twitch-bot/Dockerfile
Knut Ahlers 33f7739b6b
Disable CGO for default container
and therefore disable plugin support

Signed-off-by: Knut Ahlers <knut@ahlers.me>
2021-08-19 17:18:37 +02:00

37 lines
715 B
Docker

FROM golang:alpine as builder
COPY . /go/src/github.com/Luzifer/twitch-bot
WORKDIR /go/src/github.com/Luzifer/twitch-bot
ENV CGO_ENABLED=0
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>"
ENV CONFIG=/data/config.yaml \
STORAGE_FILE=/data/store.json.gz
RUN set -ex \
&& apk --no-cache add \
bash \
ca-certificates \
curl \
jq \
tzdata
COPY --from=builder /go/bin/twitch-bot /usr/local/bin/twitch-bot
VOLUME ["/data"]
ENTRYPOINT ["/usr/local/bin/twitch-bot"]
CMD ["--"]
# vim: set ft=Dockerfile: