From ad35c8dfb39cd2e57c2d59ef848de7e852692e14 Mon Sep 17 00:00:00 2001 From: Craig Shutko Date: Tue, 13 Aug 2019 11:48:07 -0700 Subject: [PATCH] Create Dockerfile --- action-a/Dockerfile | 13 +++++++++++++ 1 file changed, 13 insertions(+) create mode 100644 action-a/Dockerfile diff --git a/action-a/Dockerfile b/action-a/Dockerfile new file mode 100644 index 0000000..58dbd77 --- /dev/null +++ b/action-a/Dockerfile @@ -0,0 +1,13 @@ +FROM debian:9.5-slim + +LABEL "com.github.actions.name"="Hello World" +LABEL "com.github.actions.description"="Write arguments to the standard output" +LABEL "com.github.actions.icon"="mic" +LABEL "com.github.actions.color"="purple" + +LABEL "repository"="https://github.com/octocat/hello-world" +LABEL "homepage"="https://github.com/actions" +LABEL "maintainer"="Octocat " + +ADD entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"]