Files

9 lines
294 B
Docker
Raw Permalink Normal View History

2019-09-05 20:41:55 -07:00
# Container image that runs your code
2019-08-03 21:11:09 -07:00
FROM alpine:3.10
2019-09-05 20:41:55 -07:00
# Copies your code file from your action repository to the filesystem path `/` of the container
2019-08-03 21:11:09 -07:00
COPY entrypoint.sh /entrypoint.sh
2019-09-05 20:41:55 -07:00
# Code file to execute when the docker container starts up (`entrypoint.sh`)
2019-08-03 21:11:09 -07:00
ENTRYPOINT ["/entrypoint.sh"]