mirror of
https://gitlab.redox-os.org/redox-os/redox.git
synced 2026-06-22 12:54:20 +08:00
podman: only install libc6-dev-i386 and syslinux-utils on x86_64
This commit is contained in:
parent
bf65e41266
commit
a4133e45d0
@ -36,7 +36,6 @@ RUN useradd --create-home --no-log-init --uid _UID_ poduser \
|
||||
gtk-doc-tools \
|
||||
help2man \
|
||||
intltool \
|
||||
libc6-dev-i386 \
|
||||
libexpat-dev \
|
||||
libfontconfig1-dev \
|
||||
libfuse3-dev \
|
||||
@ -72,7 +71,6 @@ RUN useradd --create-home --no-log-init --uid _UID_ poduser \
|
||||
ruby \
|
||||
scons \
|
||||
ssh \
|
||||
syslinux-utils \
|
||||
texinfo \
|
||||
unifdef \
|
||||
unzip \
|
||||
@ -84,4 +82,9 @@ RUN useradd --create-home --no-log-init --uid _UID_ poduser \
|
||||
xxd \
|
||||
zip \
|
||||
zlib1g-dev \
|
||||
zstd
|
||||
zstd \
|
||||
&& if [ "$(uname -m)" = "x86_64" ]; then \
|
||||
apt-get install -y --no-install-recommends \
|
||||
libc6-dev-i386 \
|
||||
syslinux-utils \
|
||||
; fi
|
||||
|
||||
Loading…
Reference in New Issue
Block a user