diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..c408725 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,8 @@ +# Container image that runs your code +FROM ubuntu:latest + +# Copies your code file from your action repository to the filesystem path `/` of the container +COPY entry.sh /entry.sh + +# Code file to execute when the docker container starts up (`entrypoint.sh`) +ENTRYPOINT ["/entry.sh"]