1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-03-23 21:19:24 +02:00
dockerfiles/webhook/Dockerfile

19 lines
219 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
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U bash
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"]