Skip to content

Commit

Permalink
Added Dockerfile for WikiChangeTracker
Browse files Browse the repository at this point in the history
  • Loading branch information
razi-rais committed Feb 12, 2018
1 parent f1ca3e8 commit a371eda
Showing 1 changed file with 13 additions and 0 deletions.
13 changes: 13 additions & 0 deletions WikiChangeTracker/Dockerfile
@@ -0,0 +1,13 @@
FROM ubuntu:16.04

LABEL maintainer="Razi Rais"

RUN apt-get update \
&& apt-get install python -y \
&& apt-get install python-pip -y \
&& pip install requests \
&& pip install sseclient

COPY trackchanges.py trackchanges.py

ENTRYPOINT ["python", "trackchanges.py"]

0 comments on commit a371eda

Please sign in to comment.