diff options
Diffstat (limited to 'test/runtimes/python/Dockerfile')
-rw-r--r-- | test/runtimes/python/Dockerfile | 3 |
1 files changed, 2 insertions, 1 deletions
diff --git a/test/runtimes/python/Dockerfile b/test/runtimes/python/Dockerfile index 710daee43..5ae328890 100644 --- a/test/runtimes/python/Dockerfile +++ b/test/runtimes/python/Dockerfile @@ -28,5 +28,6 @@ RUN make -s -j2 COPY common /root/go/src/gvisor.dev/gvisor/test/runtimes/common/common COPY python/proctor-python.go ${LANG_DIR} +RUN ["/root/go/bin/go", "build", "-o", "/root/go/bin/proctor", "proctor-python.go"] -ENTRYPOINT ["/root/go/bin/go", "run", "proctor-python.go"] +ENTRYPOINT ["/root/go/bin/proctor"] |