mirror of
https://github.com/the-programmers-hangout/swiftspiracy-bot.git
synced 2026-09-04 09:16:01 +02:00
8 lines
156 B
Docker
8 lines
156 B
Docker
FROM golang:alpine AS builder
|
|
RUN apk --update add ca-certificates git make bash
|
|
WORKDIR /app
|
|
COPY . ./
|
|
RUN go mod tidy
|
|
RUN make bot
|
|
ENTRYPOINT ["bin/bot"]
|