fix: put entry point in root

This commit is contained in:
Derrick Hammer 2023-12-28 01:04:31 -05:00
parent 03f00cb520
commit 3c3be95cd8
Signed by: pcfreak30
GPG Key ID: C997C339BE476FF2
1 changed files with 3 additions and 1 deletions

View File

@ -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"]