mirror of
https://github.com/vimagick/dockerfiles.git
synced 2025-01-22 05:09:36 +02:00
19 lines
216 B
Docker
19 lines
216 B
Docker
#
|
|
# Dockerfile for 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"]
|