1
2
mirror of https://github.com/vimagick/dockerfiles synced 2024-06-26 00:38:37 +00:00
dockerfiles/webhook/Dockerfile
2016-01-26 01:00:44 +08:00

24 lines
347 B
Docker

#
# Dockerfile for webhook
#
FROM alpine
MAINTAINER kev <noreply@datageek.info>
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"]