Update bot logic, Dockerfile and docker-compose.yml

This commit is contained in:
Sarteambot Admin
2026-03-11 21:55:20 +08:00
parent 3adb3f1079
commit faf4308f7f
3 changed files with 88 additions and 24 deletions

View File

@@ -1,5 +1,5 @@
# Build stage
FROM golang:1.21-alpine AS builder
FROM golang:1.25-alpine AS builder
WORKDIR /app
COPY go.mod go.sum ./
@@ -15,6 +15,7 @@ ENV TZ=Asia/Shanghai
WORKDIR /app
COPY --from=builder /app/go-helper .
COPY image.png .
COPY .env.example .env
ENTRYPOINT ["./go-helper"]