1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-25 00:08:49 +00:00
dockerfiles/webhook/Dockerfile
2017-05-08 07:05:07 +08:00

24 lines
344 B
Docker

#
# Dockerfile for webhook
#
FROM alpine
MAINTAINER kev <noreply@easypi.pro>
RUN set -xe \
&& apk add -U bash \
coreutils \
curl \
jq \
&& rm -rf /var/cache/apk/*
COPY ./webhook /usr/local/bin/
WORKDIR /scripts
VOLUME /scripts
EXPOSE 9000
ENTRYPOINT ["webhook"]
CMD ["-help"]