From 7345f159c925a9ada423410132f206cbcff09e1d Mon Sep 17 00:00:00 2001 From: Mick Grove Date: Tue, 22 Jul 2025 11:38:02 -0700 Subject: [PATCH] Fixing issue with dockerfile. Removed non-existent sh package from apk command --- docker/Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index f44e792..7c6ce44 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -1,9 +1,9 @@ # syntax=docker/dockerfile:1 FROM alpine:latest -RUN apk add --no-cache curl tar git sh +RUN apk add --no-cache curl tar git -ARG TARGETARCH # set automatically by BuildKit +ARG TARGETARCH ENV TARGETARCH=${TARGETARCH} WORKDIR /app