initial commit

This commit is contained in:
JkLondon
2025-07-30 18:32:35 +02:00
parent 9343ddef85
commit 5c56f44618
5 changed files with 152 additions and 0 deletions

11
Dockerfile Normal file
View File

@ -0,0 +1,11 @@
FROM golang:1.24.4 AS builder
WORKDIR /app
COPY . .
RUN go mod tidy && go build -o bot main.go
FROM debian:bookworm-slim
WORKDIR /app
RUN apt-get update && apt-get install -y ca-certificates && update-ca-certificates
COPY --from=builder /app/bot .
CMD ["./bot"]