From 0936ce2bbd23dc998ad44fd83ad1134cf298f6b9 Mon Sep 17 00:00:00 2001 From: Max Schmitt Date: Tue, 30 Nov 2021 19:35:48 +0100 Subject: [PATCH] chore: add wget to Docker images --- utils/docker/Dockerfile.bionic | 2 +- utils/docker/Dockerfile.focal | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/utils/docker/Dockerfile.bionic b/utils/docker/Dockerfile.bionic index 5b5bb008d2..b15a27b045 100644 --- a/utils/docker/Dockerfile.bionic +++ b/utils/docker/Dockerfile.bionic @@ -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 && \ diff --git a/utils/docker/Dockerfile.focal b/utils/docker/Dockerfile.focal index ea4f461f42..0a65ffd9e2 100644 --- a/utils/docker/Dockerfile.focal +++ b/utils/docker/Dockerfile.focal @@ -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 && \