1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 16:28:40 +00:00
dockerfiles/webhook/Dockerfile

24 lines
344 B
Docker
Raw Normal View History

2015-11-05 03:32:10 +00:00
#
# Dockerfile for webhook
#
2015-11-05 04:20:42 +00:00
FROM alpine
2017-05-07 23:05:07 +00:00
MAINTAINER kev <noreply@easypi.pro>
2015-11-05 04:20:42 +00:00
2016-01-25 17:00:44 +00:00
RUN set -xe \
&& apk add -U bash \
coreutils \
curl \
jq \
&& rm -rf /var/cache/apk/*
2015-11-05 04:20:42 +00:00
2015-11-05 04:24:32 +00:00
COPY ./webhook /usr/local/bin/
2015-11-05 04:20:42 +00:00
WORKDIR /scripts
VOLUME /scripts
EXPOSE 9000
ENTRYPOINT ["webhook"]
2015-11-05 03:32:10 +00:00
CMD ["-help"]