From 6d52c0008438de94827e2ed59d7a10a59b9da059 Mon Sep 17 00:00:00 2001 From: "Wilson E. Husin" Date: Fri, 19 Feb 2021 13:16:35 -0800 Subject: [PATCH] Add binaries to PATH, use ENTRYPOINT Signed-off-by: Wilson E. Husin --- cluster/images/conformance/Dockerfile | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/cluster/images/conformance/Dockerfile b/cluster/images/conformance/Dockerfile index 4961ba2c180..90067615514 100644 --- a/cluster/images/conformance/Dockerfile +++ b/cluster/images/conformance/Dockerfile @@ -28,10 +28,9 @@ COPY --from=base /usr/bin/diff /usr/local/bin/ COPY ginkgo /usr/local/bin/ COPY e2e.test /usr/local/bin/ COPY kubectl /usr/local/bin/ -COPY gorunner /run_e2e.sh +COPY gorunner /usr/local/bin/ COPY gorunner /gorunner COPY cluster /kubernetes/cluster -WORKDIR /usr/local/bin ENV E2E_FOCUS="\[Conformance\]" ENV E2E_SKIP="" @@ -41,4 +40,4 @@ ENV E2E_VERBOSITY="4" ENV RESULTS_DIR="/tmp/results" ENV KUBECONFIG="" -CMD [ "/gorunner" ] +ENTRYPOINT [ "/gorunner" ]