16 lines
265 B
Docker
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"]
|