Files
plugin-drone-webhook/Dockerfile
T
Thomas Boerger 4d38a477e9 More additions to be in sync with other plugins (#21)
* 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
2017-09-02 17:34:15 +08:00

12 lines
428 B
Docker

FROM plugins/base:multiarch
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/linux/amd64/drone-webhook /bin/
ENTRYPOINT ["/bin/drone-webhook"]