From fb996668e40031671e08d107e1a5307e813215f9 Mon Sep 17 00:00:00 2001 From: Samantha Sample Date: Mon, 5 Aug 2019 17:18:51 -0700 Subject: Alter Dockerfiles to include common.go and use a prebuilt JDK. After the refactoring of the proctor binaries, the Dockerfiles for each language must be altered to copy the common folder into their image. Additionally, Java has been changed to use the pre-built version of JDK-11 from Ubuntu, instead of building it from the source. This allows for a smaller image and faster test execution within the container. PiperOrigin-RevId: 261805158 --- test/runtimes/php/Dockerfile | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) (limited to 'test/runtimes/php/Dockerfile') diff --git a/test/runtimes/php/Dockerfile b/test/runtimes/php/Dockerfile index 1f8959b50..491ab902d 100644 --- a/test/runtimes/php/Dockerfile +++ b/test/runtimes/php/Dockerfile @@ -24,6 +24,7 @@ WORKDIR ${LANG_DIR} RUN ./configure RUN make -COPY proctor-php.go ${LANG_DIR} +COPY common /root/go/src/gvisor.dev/gvisor/test/runtimes/common/common +COPY php/proctor-php.go ${LANG_DIR} ENTRYPOINT ["/root/go/bin/go", "run", "proctor-php.go"] -- cgit v1.2.3