From e01572750901c68aeb507353cafae6a65cb2eaef Mon Sep 17 00:00:00 2001 From: bobslept <38557801+bobslept@users.noreply.github.com> Date: Sun, 8 Oct 2023 17:07:02 +0200 Subject: [PATCH] fix: test repo for shadow --- toolboxes/Containerfile.wolfi | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/toolboxes/Containerfile.wolfi b/toolboxes/Containerfile.wolfi index d2a3701f48d..5751334c5df 100644 --- a/toolboxes/Containerfile.wolfi +++ b/toolboxes/Containerfile.wolfi @@ -9,12 +9,14 @@ LABEL com.github.containers.toolbox="true" \ COPY ./toolboxes/packages.wolfi /toolbox-packages # Update image & add dependencies -RUN apk update && \ +RUN echo https://dl-2.alpinelinux.org/alpine/edge/community/ >> /etc/apk/repositories && \ + apk update && \ apk upgrade # Add Distrobox specific packages RUN apk add sudo-rs \ procps \ + shadow \ bash \ bzip2 \ curl \