mirror of
https://github.com/jon4hz/workflow-webhook.git
synced 2025-12-19 23:56:02 +01:00
Improved build time Better curl usage Allow unsigned SSL certificates Additional GitHub environment header
20 lines
534 B
Docker
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"]
|