From a7c6094e61e6572cc04d020803a5a6fe73581b9f Mon Sep 17 00:00:00 2001 From: jeffav <31144003+jeffav@users.noreply.github.com> Date: Thu, 4 Mar 2021 16:17:52 -0800 Subject: [PATCH] update entrypoint filename --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index c408725..b74fe51 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,7 +2,8 @@ FROM ubuntu:latest # Copies your code file from your action repository to the filesystem path `/` of the container -COPY entry.sh /entry.sh +ADD entrypoint.sh /entrypoint.sh +RUN chmod +x /entrypoint.sh # Code file to execute when the docker container starts up (`entrypoint.sh`) -ENTRYPOINT ["/entry.sh"] +ENTRYPOINT ["/entrypoint.sh"]