mirror of
https://github.com/vimagick/dockerfiles.git
synced 2024-11-24 08:52:15 +02:00
24 lines
344 B
Docker
24 lines
344 B
Docker
#
|
|
# Dockerfile for webhook
|
|
#
|
|
|
|
FROM alpine
|
|
MAINTAINER kev <noreply@easypi.pro>
|
|
|
|
RUN set -xe \
|
|
&& apk add -U bash \
|
|
coreutils \
|
|
curl \
|
|
jq \
|
|
&& rm -rf /var/cache/apk/*
|
|
|
|
COPY ./webhook /usr/local/bin/
|
|
|
|
WORKDIR /scripts
|
|
VOLUME /scripts
|
|
|
|
EXPOSE 9000
|
|
|
|
ENTRYPOINT ["webhook"]
|
|
CMD ["-help"]
|