This commit is contained in:
Smigz 2024-05-09 20:28:21 -04:00
commit f109341c4b
3 changed files with 32 additions and 0 deletions

9
Dockerfile Normal file
View file

@ -0,0 +1,9 @@
# Container image that runs your code
FROM alpine:3.10
# 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"]