test
All checks were successful
/ debug (push) Successful in 38s

This commit is contained in:
lubiana 2024-12-15 12:16:07 +01:00
parent 6cb1aa7419
commit 120d4f2a9e
Signed by: lubiana
SSH key fingerprint: SHA256:vW1EA0fRR3Fw+dD/sM0K+x3Il2gSry6YRYHqOeQwrfk
4 changed files with 39 additions and 4 deletions

9
actions/hello/Dockerfile Normal file
View file

@ -0,0 +1,9 @@
# Container image that runs your code
FROM alpine:edge
# Copies your code file from your action repository to the filesystem path `/` of the container
COPY entrypoint.sh /entrypoint.sh
# Code file to execute when the docker container starts up (`entrypoint.sh`)
ENTRYPOINT ["/entrypoint.sh"]