1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-24 05:17:06 +02:00
dockerfiles/webhook/Dockerfile

24 lines
344 B
Docker
Raw Normal View History

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