Don't install unnecessary packages
All checks were successful
ci/woodpecker/push/docker Pipeline was successful
ci/woodpecker/manual/docker Pipeline was successful
ci/woodpecker/cron/docker Pipeline was successful

This commit is contained in:
Oliver Traber 2023-07-09 22:33:09 +02:00
parent 099d432864
commit f91def5f69
Signed by: Bluemedia
GPG key ID: C0674B105057136C

View file

@ -14,7 +14,7 @@ ENV HLS_PLAYLIST_LENGTH 20
RUN apt update -y && \ RUN apt update -y && \
apt upgrade -y && \ apt upgrade -y && \
apt autoremove -y && \ apt autoremove -y && \
apt install nginx libnginx-mod-rtmp -y && \ apt install -y --no-install-recommends nginx libnginx-mod-rtmp && \
apt clean && \ apt clean && \
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/* rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*