From 1b1ecf6cd0939f9bf5afa607e64521046c166f34 Mon Sep 17 00:00:00 2001 From: Epifanov Ivan Date: Sun, 10 Aug 2025 17:17:46 +0300 Subject: [PATCH] Add build tools to non-root image --- non-root/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/non-root/Dockerfile b/non-root/Dockerfile index 1d2227c..2626ffa 100644 --- a/non-root/Dockerfile +++ b/non-root/Dockerfile @@ -18,6 +18,7 @@ ENV HOME /home/$USER # install sudo as root RUN apk add --no-cache sudo +RUN apk add --no-cache bash make pkgconf curl fakeroot libarchive-tools file xz cmake sudo git # add new user RUN adduser -D $USER \ @@ -25,4 +26,4 @@ RUN adduser -D $USER \ && chmod 0440 /etc/sudoers.d/$USER USER $USER -WORKDIR $HOME \ No newline at end of file +WORKDIR $HOME