From 95d4d50e8e52b23d4e4b0f4fdff038ee3057bb7d Mon Sep 17 00:00:00 2001 From: Alex Ellis Date: Wed, 5 Jun 2019 12:56:40 +0100 Subject: [PATCH] Update handler path As per comment from @stefanprodan, the path for the handler was incorrect in the run stage of the Dockerfile. Signed-off-by: Alex Ellis --- auth/basic-auth/Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/auth/basic-auth/Dockerfile b/auth/basic-auth/Dockerfile index b8f07181..bb201f52 100644 --- a/auth/basic-auth/Dockerfile +++ b/auth/basic-auth/Dockerfile @@ -25,4 +25,6 @@ RUN chown -R app /home/app USER app -CMD ["/go/src/handler/handler"] +WORKDIR /home/app + +CMD ["./handler"]