Compare commits

...

2 Commits

Author SHA1 Message Date
3e2cb30f97 Merge pull request 'Update alpine Docker tag to v3.20' (#8) from renovate/alpine-3.x into main
Some checks are pending
Create and publish a Docker image / build-and-push-image (push) Waiting to run
Reviewed-on: #8
2024-11-09 15:28:00 +00:00
a3b88f1267 Update alpine Docker tag to v3.20 2024-11-07 23:04:59 +00:00

View File

@ -11,7 +11,7 @@ RUN go build \
.
RUN echo "nobody:x:65534:65534:Nobody:/:" > /etc_passwd
FROM alpine:3.19 as compressor
FROM alpine:3.20 as compressor
RUN apk add --no-cache upx binutils
COPY --from=builder --chown=65534:0 /bin/app /app
RUN strip /app && upx -q -9 /app