Fixing issue with dockerfile. Removed non-existent sh package from apk command

This commit is contained in:
Mick Grove 2025-07-22 11:38:02 -07:00
commit 7345f159c9

View file

@ -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