Files
workflow-webhook/Dockerfile
distributhor 16b7ccd3f1 Improvements and changes
Improved build time
Better curl usage
Allow unsigned SSL certificates
Additional GitHub environment header
2020-10-04 16:36:57 +01:00

20 lines
534 B
Docker

FROM alpine
LABEL "name"="bash"
LABEL "repository"="https://github.com/distributhor/workflow-webhook"
LABEL "version"="1.0.0"
LABEL com.github.actions.name="Workflow Webhook"
LABEL com.github.actions.description="An action that will call a webhook from your Github workflow"
LABEL com.github.actions.icon="upload-cloud"
LABEL com.github.actions.color="gray-dark"
RUN apk add --no-cache bash curl openssl xxd jq
COPY LICENSE README.md /
COPY entrypoint.sh /entrypoint.sh
RUN chmod +x /entrypoint.sh
ENTRYPOINT ["/entrypoint.sh"]