dnf: silence

This commit is contained in:
Josh Lay 2022-02-20 21:47:37 -06:00
parent 5dbab5e1e9
commit 1f4bc2892a

View file

@ -29,7 +29,7 @@ ENV STEAMCMDDIR "${HOMEDIR}/steamcmd"
RUN set -x \
&& sed -i -e 's/^LANG=".*"$/LANG="en_US.UTF-8"/' /etc/locale.conf \
&& echo -e 'max_parallel_downloads=20\nfastestmirror=False\ndeltarpm=False\n' | tee -a /etc/dnf/dnf.conf \
&& dnf install -y \
&& dnf install -qy \
util-linux \
findutils \
wget \
@ -41,7 +41,7 @@ RUN set -x \
libgcc.{x86_64,i686} \
glibc.{x86_64,i686} \
SDL2.{x86_64,i686} \
&& dnf -y up \
&& dnf -qy up \
&& dnf clean all \
&& useradd -u "${PUID}" -m "${USER}" \
&& su "${USER}" -c \