address a build problem and remove redundant bash from build

This commit is contained in:
PatrickChenHZ 2024-12-30 22:45:26 -06:00 committed by Lane.Wei
parent b760f27fc7
commit f4b31e5f67
1 changed files with 1 additions and 2 deletions

View File

@ -46,7 +46,6 @@ RUN apt-get update && apt-get install -y \
pkgconf \ pkgconf \
sudo \ sudo \
wayland-protocols \ wayland-protocols \
bash \
libwebkit2gtk-4.1-dev \ libwebkit2gtk-4.1-dev \
wget wget
@ -92,7 +91,7 @@ ARG GID=0
RUN if [ "$UID" != "0" ]; then \ RUN if [ "$UID" != "0" ]; then \
groupadd -f -g $GID $USER && \ groupadd -f -g $GID $USER && \
useradd -u $UID -g $GID $USER; \ useradd --non-unique -u $UID -g $GID $USER; \
fi fi
# Point FFMPEG Library search to the binary built upon BambuStudio build time # Point FFMPEG Library search to the binary built upon BambuStudio build time