diff options
| author | Jan Tuomi <jan.tuomi@eficode.com> | 2019-08-21 13:14:43 +0300 |
|---|---|---|
| committer | Jan Tuomi <jan.tuomi@eficode.com> | 2019-08-21 13:14:43 +0300 |
| commit | 7d93c6d197a6cd715e7bcf99da27cf31419c4916 (patch) | |
| tree | 5e0d3ebbf2c9dec05e83f173183c04f4ff9d444b /action-a/Dockerfile | |
| parent | 26e1d5ee12f2485ea625c03d3ca4e731db7d4646 (diff) | |
Add Dockerfile
Diffstat (limited to 'action-a/Dockerfile')
| -rw-r--r-- | action-a/Dockerfile | 13 |
1 files changed, 13 insertions, 0 deletions
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"="http://github.com/octocat/hello-world" +LABEL "homepage"="http://github.com/actions" +LABEL "maintainer"="Octocat <octocat@github.com>" + +ADD entrypoint.sh /entrypoint.sh +ENTRYPOINT ["/entrypoint.sh"] |
