Merge pull request #47 from mongodb/development

Fixing issue with dockerfile. Removed non-existent sh package from ap…
This commit is contained in:
Mick Grove 2025-07-22 11:38:43 -07:00 committed by GitHub
commit 8efaaa6c50

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