Skip to content

Commit 6cd0cdf

Browse files
authored
Merge pull request #14 from linuxserver/bullseye-apt-fix
add -y to apt-get upgrade
2 parents dfa7ad9 + c31f24e commit 6cd0cdf

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ RUN \
101101
> /run/systemd/container && \
102102
echo "**** install apt-utils and locales ****" && \
103103
apt-get update && \
104-
apt-get upgrade && \
104+
apt-get upgrade -y && \
105105
apt-get install -y \
106106
apt-utils \
107107
locales && \

Dockerfile.aarch64

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -101,7 +101,7 @@ RUN \
101101
> /run/systemd/container && \
102102
echo "**** install apt-utils and locales ****" && \
103103
apt-get update && \
104-
apt-get upgrade && \
104+
apt-get upgrade -y && \
105105
apt-get install -y \
106106
apt-utils \
107107
locales && \

0 commit comments

Comments
 (0)