summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/images/Dockerfile_nodejs12.4.0
diff options
context:
space:
mode:
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}