removed apt-get upgrade -y

apt-get upgrade -y shouldn't be used in a Dockerfile
This commit is contained in:
duffbeer2000
2019-12-27 15:03:21 +01:00
parent 0c1f8ed867
commit f1b1360264
3 changed files with 3 additions and 3 deletions

View File

@@ -6,7 +6,7 @@ LABEL maintainer="Andre Germann" \
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
# Install prerequisites (as listed in iobroker installer.sh) # Install prerequisites (as listed in iobroker installer.sh)
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ RUN apt-get update && apt-get install -y \
acl \ acl \
apt-utils \ apt-utils \
build-essential \ build-essential \

View File

@@ -6,7 +6,7 @@ LABEL maintainer="Andre Germann" \
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
# Install prerequisites (as listed in iobroker installer.sh) # Install prerequisites (as listed in iobroker installer.sh)
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ RUN apt-get update && apt-get install -y \
acl \ acl \
apt-utils \ apt-utils \
build-essential \ build-essential \

View File

@@ -6,7 +6,7 @@ LABEL maintainer="Andre Germann" \
ENV DEBIAN_FRONTEND noninteractive ENV DEBIAN_FRONTEND noninteractive
# Install prerequisites (as listed in iobroker installer.sh) # Install prerequisites (as listed in iobroker installer.sh)
RUN apt-get update && apt-get upgrade -y && apt-get install -y \ RUN apt-get update && apt-get install -y \
acl \ acl \
apt-utils \ apt-utils \
build-essential \ build-essential \