update
All checks were successful
/ Make image (push) Successful in 1m6s

This commit is contained in:
nquidox 2025-10-12 14:52:19 +03:00
parent a75d6240b3
commit 218e7d652f

View file

@ -13,7 +13,7 @@ WORKDIR /app
COPY go.mod go.sum ./ COPY go.mod go.sum ./
RUN go mod download RUN go mod download
COPY . . COPY . .
RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -o main ./cmd RUN CGO_ENABLED=0 GOOS=linux go build -trimpath -ldflags="-s -w" -o main "./cmd"
FROM alpine:3.22 FROM alpine:3.22