diff --git a/utils/docker/Dockerfile.bionic b/utils/docker/Dockerfile.bionic index 98aa6cb411..99d64fa14a 100644 --- a/utils/docker/Dockerfile.bionic +++ b/utils/docker/Dockerfile.bionic @@ -8,7 +8,7 @@ ARG DOCKER_IMAGE_NAME_TEMPLATE="mcr.microsoft.com/playwright:v%version%-bionic" RUN apt-get update && \ # Install node16 - apt-get install -y curl wget && \ + apt-get install -y curl wget gpg && \ curl -sL https://deb.nodesource.com/setup_16.x | bash - && \ apt-get install -y nodejs && \ # Feature-parity with node.js base images. diff --git a/utils/docker/Dockerfile.focal b/utils/docker/Dockerfile.focal index 2fd268d132..81bac7369c 100644 --- a/utils/docker/Dockerfile.focal +++ b/utils/docker/Dockerfile.focal @@ -8,7 +8,7 @@ ARG DOCKER_IMAGE_NAME_TEMPLATE="mcr.microsoft.com/playwright:v%version%-focal" RUN apt-get update && \ # Install node16 - apt-get install -y curl wget && \ + apt-get install -y curl wget gpg && \ curl -sL https://deb.nodesource.com/setup_16.x | bash - && \ apt-get install -y nodejs && \ # Feature-parity with node.js base images. diff --git a/utils/docker/Dockerfile.jammy b/utils/docker/Dockerfile.jammy index 821592b5be..63868afbdd 100644 --- a/utils/docker/Dockerfile.jammy +++ b/utils/docker/Dockerfile.jammy @@ -8,7 +8,7 @@ ARG DOCKER_IMAGE_NAME_TEMPLATE="mcr.microsoft.com/playwright:v%version%-jammy" RUN apt-get update && \ # Install node16 - apt-get install -y curl wget && \ + apt-get install -y curl wget gpg && \ curl -sL https://deb.nodesource.com/setup_16.x | bash - && \ apt-get install -y nodejs && \ # Feature-parity with node.js base images.