From 91b374af35aefb738fbe713b45880d45e1f4bfb5 Mon Sep 17 00:00:00 2001 From: rramiachraf <51409801+rramiachraf@users.noreply.github.com> Date: Sat, 21 Dec 2024 19:08:08 +0100 Subject: [PATCH] ci: use alpine image instead of scratch Fixes #79 --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index cfe6783..b46277f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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"