fahdbot/Dockerfile
2025-11-30 20:33:23 +01:00

13 lines
150 B
Docker

FROM golang:1.25
WORKDIR /app
COPY go.mod go.sum ./
RUN go mod download
COPY *.go ./
RUN CGO_ENABLED=0 GOOS=linux go build -o /bot
CMD ["/bot"]