2019-06-10 12:30:50 +00:00
FROM alpine/git:1.0.7
LABEL "com.github.actions.name" = "Auto Commit changed files"
2019-10-26 14:33:59 +00:00
LABEL "com.github.actions.description" = "Automatically commits files which have been changed during the workflow run and push changes back to remote repository."
2019-06-10 12:37:24 +00:00
LABEL "com.github.actions.icon" = "git-commit"
2019-06-10 12:30:50 +00:00
LABEL "com.github.actions.color" = "orange"
LABEL "repository" = "http://github.com/stefanzweifel/git-auto-commit-action"
LABEL "homepage" = "http://github.com/stefanzweifel/git-auto-commit-action"
LABEL "maintainer" = "Stefan Zweifel <hello@stefanzweifel.io>"
2019-11-30 12:02:21 +00:00
RUN apk add git-lfs
2019-06-10 12:30:50 +00:00
COPY entrypoint.sh /entrypoint.sh
ENTRYPOINT [ "sh" , "/entrypoint.sh" ]