Created
May 19, 2022 11:42
-
-
Save twyle/3552bb0cfc9c1cccdc79afa65311dd14 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
# 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"] |
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment