quieter apt install in docker

This commit is contained in:
boyska 2021-09-17 10:22:55 +02:00
parent 2ee4c3b649
commit a3d20b9a35

View file

@ -13,8 +13,8 @@ RUN groupadd -g ${hostgid} techrec \
&& useradd -g techrec -u ${hostuid} -m techrec \
&& mkdir -p /src/techrec \
&& chown -R techrec:techrec /src \
&& apt-get update \
&& apt-get install -y ffmpeg \
&& apt-get -qq update \
&& apt-get install -qq -y ffmpeg \
&& rm -rf /var/lib/apt/lists/*
USER techrec