WebHook broker that accepts notifications from multiple platforms and performs simple actions in response
You can not select more than 25 topics Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.

Dockerfile 186B

12345678910111213
  1. FROM python:3-stretch
  2. RUN useradd sinker
  3. WORKDIR /var/code
  4. ADD . .
  5. RUN chown -R sinker /var/code && \
  6. pip3 install -r requirements.txt
  7. USER sinker
  8. CMD [ "python", "./main.py" ]