This commit is contained in:
cangui 2025-05-06 18:51:44 +02:00
parent 94146386d0
commit 1ac107ee5c

View File

@ -1,5 +1,5 @@
# Build stage
FROM golang:1.21-alpine AS builder
FROM golang:1.24-alpine AS builder # Changé de 1.21 à 1.24
WORKDIR /app
COPY go.mod go.sum ./
@ -15,6 +15,6 @@ WORKDIR /app
COPY --from=builder /app/whatsapp-sender .
COPY --from=builder /app/public ./public
EXPOSE 3002
EXPOSE 8080
CMD ["./whatsapp-sender"]