blob: 147449a098485ad82aeb5641489544b7c7aaf30b (
plain)
1
2
3
4
5
6
7
8
|
# Container image that runs your code
FROM debian:buster
# 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"]
|