mirror of
https://github.com/drone-plugins/drone-webhook.git
synced 2026-06-04 18:24:05 +08:00
4d38a477e9
* Use specific plugin versions, pull latest versions and enable a microbadger webhook * Use the new plugins/base:multiarch image * Write readme like it is done for other plugins * Downcase all wording like on other plugins, move variables to correct file * Added dockerignore file * Added missing schema version label * Only execute webhook on master branch * Added issue and pull request templates * Added blank line to gitignore
12 lines
437 B
Docker
12 lines
437 B
Docker
FROM microsoft/nanoserver:latest
|
|
MAINTAINER Drone.IO Community <drone-dev@googlegroups.com>
|
|
|
|
LABEL org.label-schema.version=latest
|
|
LABEL org.label-schema.vcs-url="https://github.com/drone-plugins/drone-webhook.git"
|
|
LABEL org.label-schema.name="Drone Webhook"
|
|
LABEL org.label-schema.vendor="Drone.IO Community"
|
|
LABEL org.label-schema.schema-version="1.0"
|
|
|
|
ADD release/windows/amd64/drone-webhook /bin/
|
|
ENTRYPOINT [ "/bin/drone-webhook" ]
|