address a build problem and remove redundant bash from build
This commit is contained in:
parent
b760f27fc7
commit
f4b31e5f67
|
@ -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
|
||||||
|
|
Loading…
Reference in New Issue