summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/images/Dockerfile_nodejs12.4.0
diff options
context:
space:
mode:
authorNicolas Lacasse <nlacasse@google.com>2019-09-17 13:28:07 -0700
committergVisor bot <gvisor-bot@google.com>2019-09-17 13:29:19 -0700
commit062190d983b133c26dd0abcc398ec9f008b167b4 (patch)
treef663d7a563d7f74a957e3c1a0b04d1b0bfafd960 /test/runtimes/images/Dockerfile_nodejs12.4.0
parent3b7119a7c91789f69d8637401a1359229a33b213 (diff)
Follow-up fixes for image tests.
- Fix ARG syntax in Dockerfiles. - Fix curl commands in Dockerfiles. - Fix some paths in proctor binaries. - Check error from Walk in search helper. PiperOrigin-RevId: 269641686
Diffstat (limited to 'test/runtimes/images/Dockerfile_nodejs12.4.0')
-rw-r--r--test/runtimes/images/Dockerfile_nodejs12.4.04
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtimes/images/Dockerfile_nodejs12.4.0 b/test/runtimes/images/Dockerfile_nodejs12.4.0
index 387824910..26f68b487 100644
--- a/test/runtimes/images/Dockerfile_nodejs12.4.0
+++ b/test/runtimes/images/Dockerfile_nodejs12.4.0
@@ -12,8 +12,8 @@ RUN apt-get update && apt-get install -y \
python
WORKDIR /root
-ARG VERSION v12.4.0
-RUN curl https://nodejs.org/dist/${VERSION}/node-${VERSION}.tar.gz
+ARG VERSION=v12.4.0
+RUN curl -o node-${VERSION}.tar.gz https://nodejs.org/dist/${VERSION}/node-${VERSION}.tar.gz
RUN tar -zxf node-${VERSION}.tar.gz
WORKDIR /root/node-${VERSION}