blob: 47bc119d66ef0473517a9aef1575caf8a16fab92 (
plain)
1
2
3
4
5
6
7
8
|
# Container image that runs your code
FROM node:16-buster-slim
# 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"]
|