chore(deps): pin dependencies
Some checks are pending
renovate/stability-days Updates have not met minimum release age requirement
CI / test (pull_request) Successful in 1m15s

This commit is contained in:
2025-12-12 21:05:52 +00:00
parent 0193eac6e5
commit 5f8f7566c5
3 changed files with 16 additions and 16 deletions

View File

@@ -1,4 +1,4 @@
FROM golang:1.25-alpine as build
FROM golang:1.25-alpine@sha256:26111811bc967321e7b6f852e914d14bede324cd1accb7f81811929a6a57fea9 as build
ARG GOARCH=amd64
@@ -9,6 +9,6 @@ COPY . .
RUN CGO_ENABLED=0 GOOS=linux GOARCH=${GOARCH} \
go build -trimpath -ldflags="-s -w" -o main .
FROM gcr.io/distroless/static-debian12
FROM gcr.io/distroless/static-debian12@sha256:4b2a093ef4649bccd586625090a3c668b254cfe180dee54f4c94f3e9bd7e381e
COPY --from=build /app/main /
CMD ["/main"]