Switch to a Docker container action.

This commit is contained in:
Franz Diebold 2020-02-11 10:30:39 +01:00
parent e050e21c8f
commit dbbf375c45
7 changed files with 52 additions and 456 deletions

8
Dockerfile Normal file
View file

@ -0,0 +1,8 @@
# 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"]