ci: use alpine image instead of scratch

Fixes #79
This commit is contained in:
rramiachraf 2024-12-21 19:08:08 +01:00
parent f2447f8219
commit 91b374af35

View File

@ -1,4 +1,4 @@
FROM docker.io/golang:1.22.2-alpine3.19 AS build
FROM docker.io/golang:1.22.10-alpine3.21 AS build
RUN apk add make git curl
@ -13,7 +13,7 @@ RUN make build
###############################################################
FROM scratch
FROM docker.io/alpine:3.21
LABEL org.opencontainers.image.source="https://github.com/rramiachraf/dumb"
LABEL org.opencontainers.image.url="https://github.com/rramiachraf/dumb"