summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/images/Dockerfile_python3.7.3
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_python3.7.3
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_python3.7.3')
-rw-r--r--test/runtimes/images/Dockerfile_python3.7.32
1 files changed, 1 insertions, 1 deletions
diff --git a/test/runtimes/images/Dockerfile_python3.7.3 b/test/runtimes/images/Dockerfile_python3.7.3
index c9cc52d3a..905cd22d7 100644
--- a/test/runtimes/images/Dockerfile_python3.7.3
+++ b/test/runtimes/images/Dockerfile_python3.7.3
@@ -18,7 +18,7 @@ RUN apt-get update && apt-get install -y \
# Use flags -LJO to follow the html redirect and download .tar.gz.
WORKDIR /root
-ARG VERSION 3.7.3
+ARG VERSION=3.7.3
RUN curl -LJO https://github.com/python/cpython/archive/v${VERSION}.tar.gz
RUN tar -zxf cpython-${VERSION}.tar.gz