Remove wget removal from Dockerfiles
This seems to throw errors randomly when building locally. As these are purely build containers, the extra few kB due to wget doesn't matter.
This commit is contained in:
3
debian/docker/Dockerfile
vendored
3
debian/docker/Dockerfile
vendored
@@ -116,8 +116,7 @@ RUN wget https://deb.nodesource.com/setup_${NODEJS_VERSION}.x -O nodejs-install.
|
||||
nodejs
|
||||
|
||||
# Clean up dependencies
|
||||
RUN apt-get remove wget -y \
|
||||
&& apt-get clean autoclean -y \
|
||||
RUN apt-get clean autoclean -y \
|
||||
&& apt-get autoremove -y \
|
||||
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*
|
||||
|
||||
|
||||
@@ -61,8 +61,7 @@ RUN wget https://deb.nodesource.com/setup_${NODEJS_VERSION}.x -O nodejs-install.
|
||||
nodejs
|
||||
|
||||
# Clean up dependencies
|
||||
RUN apt-get remove wget -y \
|
||||
&& apt-get clean autoclean -y \
|
||||
RUN apt-get clean autoclean -y \
|
||||
&& apt-get autoremove -y \
|
||||
&& rm -rf /var/cache/apt/archives/* /var/lib/apt/lists/*
|
||||
|
||||
|
||||
Reference in New Issue
Block a user