From 85fbdd46847dff45afe76d9341e8c001a3394e2d Mon Sep 17 00:00:00 2001 From: Jeff Huleatt <3759507+jhuleatt@users.noreply.github.com> Date: Wed, 2 Aug 2023 15:36:18 +0000 Subject: [PATCH] update deploy container deps --- buildtools/container/Dockerfile | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) diff --git a/buildtools/container/Dockerfile b/buildtools/container/Dockerfile index 0089506a..8cc75ea3 100644 --- a/buildtools/container/Dockerfile +++ b/buildtools/container/Dockerfile @@ -1,11 +1,12 @@ -FROM node:14.17.3 +FROM ubuntu:latest # Install dependencies: curl, git, jq, python2 and jre8. RUN apt-get update && \ - apt-get install -y curl git jq python openjdk-8-jre-headless + apt-get install -y curl git jq python-is-python3 openjdk-11-jre-headless nodejs npm wget -# Install npm at 6.14.13. -RUN npm install --global npm@6.14.13 +# Print Node version and npm version +RUN node -v +RUN npm -v # Install hub RUN curl -fsSL --output hub.tgz https://github.com/github/hub/releases/download/v2.11.2/hub-linux-amd64-2.11.2.tgz