diff options
author | Nicolas Lacasse <nlacasse@google.com> | 2019-09-17 13:28:07 -0700 |
---|---|---|
committer | gVisor bot <gvisor-bot@google.com> | 2019-09-17 13:29:19 -0700 |
commit | 062190d983b133c26dd0abcc398ec9f008b167b4 (patch) | |
tree | f663d7a563d7f74a957e3c1a0b04d1b0bfafd960 /test/runtimes/images/Dockerfile_php7.3.6 | |
parent | 3b7119a7c91789f69d8637401a1359229a33b213 (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_php7.3.6')
-rw-r--r-- | test/runtimes/images/Dockerfile_php7.3.6 | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/test/runtimes/images/Dockerfile_php7.3.6 b/test/runtimes/images/Dockerfile_php7.3.6 index 272b491b4..e6b4c6329 100644 --- a/test/runtimes/images/Dockerfile_php7.3.6 +++ b/test/runtimes/images/Dockerfile_php7.3.6 @@ -15,8 +15,8 @@ RUN apt-get update && apt-get install -y \ re2c WORKDIR /root -ARG VERSION 7.3.6 -RUN curl -o https://www.php.net/distributions/php-${VERSION}.tar.gz +ARG VERSION=7.3.6 +RUN curl -o php-${VERSION}.tar.gz https://www.php.net/distributions/php-${VERSION}.tar.gz RUN tar -zxf php-${VERSION}.tar.gz WORKDIR /root/php-${VERSION} |