This commit is contained in:
lubiana 2024-06-16 11:04:24 +02:00
commit 8f3ddc9df1
No known key found for this signature in database
4 changed files with 30 additions and 0 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
# 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"]