2
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-12-26 23:21:36 +01:00

update webhook

This commit is contained in:
kev
2015-11-05 12:20:42 +08:00
parent 48e3c6f377
commit f1ccc2f347
4 changed files with 71 additions and 3 deletions

View File

@@ -2,7 +2,17 @@
# Dockerfile for webhook
#
FROM scratch
COPY webhook /
ENTRYPOINT ["/webhook"]
FROM alpine
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U bash
COPY webhook /usr/local/bin
WORKDIR /scripts
VOLUME /scripts
EXPOSE 9000
ENTRYPOINT ["webhook"]
CMD ["-help"]