1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2024-11-28 09:08:36 +02:00
dockerfiles/webhook/Dockerfile

24 lines
344 B
Docker
Raw Normal View History

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