Files
pull-request-action/Dockerfile
Vanessa Sochat bb0828763b try with curl
2019-02-01 13:31:55 -05:00

15 lines
481 B
Docker

FROM debian:jessie-slim
# docker build -t vanessa/pull-request-action .
LABEL "com.github.actions.name"="Pull Request on Branch Push"
LABEL "com.github.actions.description"="Create a pull request when a branch is created or updated"
LABEL "com.github.actions.icon"="activity"
LABEL "com.github.actions.color"="yellow"
RUN apt-get update && apt-get install -y jq curl wget git
COPY pull-request.sh /pull-request.sh
RUN chmod u+x /pull-request.sh
ENTRYPOINT ["/pull-request.sh"]