switch back to alpine
All checks were successful
/ Make image (push) Successful in 1m31s

This commit is contained in:
nquidox 2025-10-18 14:57:43 +03:00
parent f561869b08
commit 0348dda5cd

View file

@ -7,7 +7,11 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=amd64 go build -trimpath -ldflags="-s -w" -o main "./cmd"
FROM ubuntu:24.04
FROM alpine:3.22
RUN apk add --no-cache \
tzdata \
ca-certificates
COPY --from=builder /app/main /usr/local/bin/app