fix: put entry point in root
This commit is contained in:
parent
03f00cb520
commit
3c3be95cd8
|
@ -10,6 +10,8 @@ WORKDIR /usr/src/app
|
||||||
# Copy your action's source files to the container
|
# Copy your action's source files to the container
|
||||||
COPY . .
|
COPY . .
|
||||||
|
|
||||||
|
COPY entrypoint.sh /
|
||||||
|
|
||||||
# Command to run when the Docker container starts
|
# Command to run when the Docker container starts
|
||||||
# It assumes the entrypoint is a script that handles the inputs and runs the desired commands
|
# It assumes the entrypoint is a script that handles the inputs and runs the desired commands
|
||||||
ENTRYPOINT ["sh", "./entrypoint.sh"]
|
ENTRYPOINT ["sh", "/entrypoint.sh"]
|
||||||
|
|
Loading…
Reference in New Issue