Compare commits

..

No commits in common. "main" and "v1.0.0" have entirely different histories.
main ... v1.0.0

2 changed files with 2 additions and 5 deletions

View File

@ -1,11 +1,8 @@
# Container image that runs your code
FROM alpine:3.21
# Set working directory
WORKDIR /usr/src
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /usr/src/entrypoint.sh
COPY entrypoint.sh /entrypoint.sh
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["sh", "/usr/src/entrypoint.sh"]
ENTRYPOINT ["/entrypoint.sh"]

0
entrypoint.sh Executable file → Normal file
View File