mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-12-14 11:23:02 +02:00
19 lines
219 B
Docker
19 lines
219 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"]
|