From bfdead9ff7e7d47a16cfa4ebfe4c36faa71edf5e Mon Sep 17 00:00:00 2001 From: PatrickChenHZ <2540932806@qq.com> Date: Mon, 30 Dec 2024 22:45:26 -0600 Subject: [PATCH] address a build problem and remove redundant bash from build --- Dockerfile | 3 +-- 1 file changed, 1 insertion(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 9cda4f298..b4118ebc8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -46,7 +46,6 @@ RUN apt-get update && apt-get install -y \ pkgconf \ sudo \ wayland-protocols \ - bash \ libwebkit2gtk-4.1-dev \ wget @@ -92,7 +91,7 @@ ARG GID=0 RUN if [ "$UID" != "0" ]; then \ groupadd -f -g $GID $USER && \ - useradd -u $UID -g $GID $USER; \ + useradd --non-unique -u $UID -g $GID $USER; \ fi # Point FFMPEG Library search to the binary built upon BambuStudio build time