Files
aimaren/Dockerfile.bot
2025-07-26 17:18:41 -07:00

16 lines
265 B
Docker

FROM golang:1.24-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -o /bot ./cmd/bot
FROM alpine:latest
WORKDIR /root/
COPY --from=builder /bot /bot
COPY config.yaml .
ENTRYPOINT ["/bot"]