chore: add wget to Docker images

This commit is contained in:
Max Schmitt 2021-11-30 19:35:48 +01:00
parent 24400a3d48
commit 0936ce2bbd
2 changed files with 2 additions and 2 deletions

View File

@ -7,7 +7,7 @@ ARG TZ=America/Los_Angeles
RUN apt-get update && \
# Install node16
apt-get install -y curl && \
apt-get install -y curl wget && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs && \

View File

@ -8,7 +8,7 @@ ARG TZ=America/Los_Angeles
RUN apt-get update && \
# Install node16
apt-get install -y curl && \
apt-get install -y curl wget && \
curl -sL https://deb.nodesource.com/setup_16.x | bash - && \
apt-get install -y nodejs && \