summaryrefslogtreecommitdiffhomepage
path: root/test/runtimes/go/Dockerfile
diff options
context:
space:
mode:
Diffstat (limited to 'test/runtimes/go/Dockerfile')
-rw-r--r--test/runtimes/go/Dockerfile3
1 files changed, 2 insertions, 1 deletions
diff --git a/test/runtimes/go/Dockerfile b/test/runtimes/go/Dockerfile
index 1d5202b70..2d3477392 100644
--- a/test/runtimes/go/Dockerfile
+++ b/test/runtimes/go/Dockerfile
@@ -30,5 +30,6 @@ WORKDIR ${LANG_DIR}
COPY common /root/go/src/gvisor.dev/gvisor/test/runtimes/common/common
COPY go/proctor-go.go ${LANG_DIR}
+RUN ["/root/go/bin/go", "build", "-o", "/root/go/bin/proctor", "proctor-go.go"]
-ENTRYPOINT ["/root/go/bin/go", "run", "proctor-go.go"]
+ENTRYPOINT ["/root/go/bin/proctor"]