We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 6ece912 commit 85fbdd4Copy full SHA for 85fbdd4
buildtools/container/Dockerfile
@@ -1,11 +1,12 @@
1
-FROM node:14.17.3
+FROM ubuntu:latest
2
3
# Install dependencies: curl, git, jq, python2 and jre8.
4
RUN apt-get update && \
5
- 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
6
7
-# Install npm at 6.14.13.
8
-RUN npm install --global npm@6.14.13
+# Print Node version and npm version
+RUN node -v
9
+RUN npm -v
10
11
# Install hub
12
RUN curl -fsSL --output hub.tgz https://github.com/github/hub/releases/download/v2.11.2/hub-linux-amd64-2.11.2.tgz
0 commit comments