unit tests

Signed-off-by: Casey Lee <[email protected]>
This commit is contained in:
Casey Lee
2020-02-20 21:05:31 -05:00
parent be75ee20b1
commit 0582306861
466 changed files with 94682 additions and 62525 deletions
+8
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"]