aboutsummaryrefslogtreecommitdiffstats
path: root/action-a/Dockerfile
blob: 58dbd77e56741e7b56677d8dbbadf89d176a280f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
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"]