From 3c3be95cd80fa7aa4939bcb3c461bb7f699d64f1 Mon Sep 17 00:00:00 2001 From: Derrick Hammer Date: Thu, 28 Dec 2023 01:04:31 -0500 Subject: [PATCH] fix: put entry point in root --- Dockerfile | 4 +++- 1 file changed, 3 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 78bbdc6..182fd46 100644 --- a/Dockerfile +++ b/Dockerfile @@ -10,6 +10,8 @@ WORKDIR /usr/src/app # Copy your action's source files to the container COPY . . +COPY entrypoint.sh / + # Command to run when the Docker container starts # It assumes the entrypoint is a script that handles the inputs and runs the desired commands -ENTRYPOINT ["sh", "./entrypoint.sh"] +ENTRYPOINT ["sh", "/entrypoint.sh"]