From 7b7d5d5d0d4ee9ec1400664fa2ab6761ea44764c Mon Sep 17 00:00:00 2001 From: dwalker-sabiogroup <100362969+dwalker-sabiogroup@users.noreply.github.com> Date: Thu, 16 May 2024 14:34:32 +0100 Subject: [PATCH] fix: git version breaks docker build Build Shemnei/reviewdog-action-typos@v0 fails installing git as the [APK does not exists](https://pkgs.alpinelinux.org/packages?name=git&branch=v3.19&repo=&arch=&maintainer=). Updating to an available version resolves the buld issues --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index bc40112..e26dffa 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ ENV TYPOS_VERSION=v1.20.9 SHELL ["/bin/ash", "-eo", "pipefail", "-c"] # hadolint ignore=DL3006 -RUN apk --no-cache add git=2.43.0-r0 +RUN apk --no-cache add git=2.43.4-r0 RUN wget -O - -q https://raw.githubusercontent.com/reviewdog/reviewdog/master/install.sh| sh -s -- -b /usr/local/bin/ ${REVIEWDOG_VERSION}