forked from carlos-jenkins/python-github-webhooks
- Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
Latest commit
17 lines (11 loc) · 385 Bytes
/
Copy pathDockerfile
File metadata and controls
17 lines (11 loc) · 385 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
FROM ubuntu:14.04
MAINTAINER Andreas Guth <andreas.guth@studitemps.de>
ENV DEBIAN_FRONTEND noninteractive
WORKDIR /src
RUN apt-get update &&\
apt-get -y install sed python-pip python-dev uwsgi-plugin-python git
ADD requirements.txt /src/
RUN pip install -r /src/requirements.txt
COPY ssh /root/.ssh
ADD webhooks.py config.json hooks /src/
CMD ["python", "/src/webhooks.py"]