1
0
mirror of https://github.com/klmp200/kaamelott-soundboard-telegram-bot synced 2025-07-23 02:10:00 +00:00

Docker et documentation

This commit is contained in:
2020-05-06 12:00:26 +02:00
parent a3045bf915
commit 28a2e7c62d
4 changed files with 71 additions and 0 deletions

23
Dockerfile Normal file
View File

@@ -0,0 +1,23 @@
FROM golang:1.14 AS builder
RUN mkdir /build
WORKDIR /build
# Copy the code from the host and compile it
COPY . .
RUN go build
RUN mkdir res
COPY sounds res/sounds
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix nocgo -o /app .
# We use Alpine for it's ca-certificates needed by http lib
FROM alpine:latest
RUN apk add --no-cache ca-certificates apache2-utils
COPY --from=builder /app ./
COPY --from=builder /build/res ./
ENTRYPOINT ["./app"]