Compare commits
No commits in common. "main" and "v1.0.0" have entirely different histories.
@ -1,11 +1,8 @@
|
|||||||
# Container image that runs your code
|
# Container image that runs your code
|
||||||
FROM alpine:3.21
|
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
|
# 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`)
|
# 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
0
entrypoint.sh
Executable file → Normal file
Loading…
Reference in New Issue
Block a user