Skip to content

Instantly share code, notes, and snippets.

@twyle
Created May 19, 2022 11:42
Show Gist options
  • Save twyle/3552bb0cfc9c1cccdc79afa65311dd14 to your computer and use it in GitHub Desktop.
Save twyle/3552bb0cfc9c1cccdc79afa65311dd14 to your computer and use it in GitHub Desktop.
# 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