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