waka-readme/Dockerfile
Athul Cyriac Ajay 6a5ebb1ab0 Merge pull request #3 from gautamkrishnar/patch-2
Updated code to do commit only if readme changed
2020-07-11 12:02:46 +05:30

8 lines
159 B
Docker

FROM python:latest
# Install dependencies.
ADD requirements.txt /requirements.txt
ADD main.py /main.py
RUN pip install -r requirements.txt
CMD python main.py