From dc609275942afd262557c93583002e43e23049e0 Mon Sep 17 00:00:00 2001 From: Carles Pina i Estany Date: Wed, 13 Apr 2022 09:29:50 +0200 Subject: [PATCH] Use alpine edge repository to install git 2.35.2 git 2.35.2 has the option directory.safe needed to fix a recent change --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 4baf5a8..2b83c72 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,6 +1,6 @@ FROM alpine:latest -RUN apk add --no-cache git +RUN apk add --no-cache --repository=http://dl-cdn.alpinelinux.org/alpine/edge/main git COPY entrypoint.sh /entrypoint.sh