mirror of
https://github.com/Luzifer/twitch-bot.git
synced 2024-11-08 08:10:08 +00:00
Add Dockerfile
This commit is contained in:
parent
55b17a635a
commit
800aae9090
1 changed files with 30 additions and 0 deletions
30
Dockerfile
Normal file
30
Dockerfile
Normal file
|
@ -0,0 +1,30 @@
|
||||||
|
FROM golang:alpine as builder
|
||||||
|
|
||||||
|
COPY . /go/src/github.com/Luzifer/twitch-bot
|
||||||
|
WORKDIR /go/src/github.com/Luzifer/twitch-bot
|
||||||
|
|
||||||
|
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 \
|
||||||
|
ca-certificates
|
||||||
|
|
||||||
|
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:
|
Loading…
Reference in a new issue