Merge pull request #14 from linuxserver/bullseye-apt-fix

add -y to apt-get upgrade
This commit is contained in:
aptalca 2024-04-05 10:20:58 -04:00 committed by GitHub
commit 6cd0cdff3c
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -101,7 +101,7 @@ RUN \
> /run/systemd/container && \
echo "**** install apt-utils and locales ****" && \
apt-get update && \
apt-get upgrade && \
apt-get upgrade -y && \
apt-get install -y \
apt-utils \
locales && \

View File

@ -101,7 +101,7 @@ RUN \
> /run/systemd/container && \
echo "**** install apt-utils and locales ****" && \
apt-get update && \
apt-get upgrade && \
apt-get upgrade -y && \
apt-get install -y \
apt-utils \
locales && \