first commit

This commit is contained in:
Adam Dobrawy
2019-08-24 13:04:49 +02:00
commit c4ba72ddd2
4 changed files with 72 additions and 0 deletions

16
Dockerfile Normal file
View File

@@ -0,0 +1,16 @@
FROM alpine
LABEL "name"="git-push"
LABEL "maintainer"="Adam Dobrawy <git+push@jawnosc.tk>"
LABEL "version"="0.0.1"
LABEL "com.github.actions.name"="cURL for GitHub Actions"
LABEL "com.github.actions.description"="Runs cURL in an Action"
LABEL "com.github.actions.icon"="upload-cloud"
LABEL "com.github.actions.color"="green"
COPY README.md LICENSE start.sh /
RUN apk add --no-cache git
CMD ["/start.sh"]