1
0
mirror of https://github.com/vimagick/dockerfiles.git synced 2025-01-12 04:23:04 +02:00
dockerfiles/webhook/Dockerfile

19 lines
219 B
Docker
Raw Normal View History

2015-11-05 05:32:10 +02:00
#
# Dockerfile for webhook
#
2015-11-05 06:20:42 +02:00
FROM alpine
MAINTAINER kev <noreply@datageek.info>
RUN apk add -U bash
2015-11-05 06:24:32 +02:00
COPY ./webhook /usr/local/bin/
2015-11-05 06:20:42 +02:00
WORKDIR /scripts
VOLUME /scripts
EXPOSE 9000
ENTRYPOINT ["webhook"]
2015-11-05 05:32:10 +02:00
CMD ["-help"]