From 35e33d2946ff978b7bb2a7ac9c554d8c38709530 Mon Sep 17 00:00:00 2001 From: Rick Burgess Date: Fri, 20 Jul 2018 19:39:29 +0100 Subject: [PATCH] fixed bin location --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index 4545f76..c2e89ef 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM mesosphere/aws-cli RUN apk -v --update add jq -ADD ./scripts/aws-auth . +ADD ./scripts/aws-auth /bin -RUN chmod a+x ./aws-auth +RUN chmod a+x /bin/aws-auth -ENTRYPOINT ./aws-auth \ No newline at end of file +ENTRYPOINT /bin/aws-auth \ No newline at end of file