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:
Joshua M. Boniface
2024-11-21 14:14:04 -05:00
parent 0717e31d66
commit deaf5b96c5
2 changed files with 2 additions and 4 deletions

View File

@@ -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/*

View File

@@ -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/*