From fd4565c6405a1f00f6e2e0e77e316a79bc584e9a Mon Sep 17 00:00:00 2001 From: Rachael Sewell Date: Thu, 5 Sep 2019 20:41:55 -0700 Subject: [PATCH] Add comments --- Dockerfile | 3 +++ 1 file changed, 3 insertions(+) diff --git a/Dockerfile b/Dockerfile index 5f5e0ef..fa0188a 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +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"]