Made a few changes to allow docker useage.

This commit is contained in:
2019-12-31 13:26:16 -05:00
parent b59851a377
commit 9d38622528
2 changed files with 23 additions and 9 deletions

11
Dockerfile Normal file
View File

@@ -0,0 +1,11 @@
FROM python:3
ADD main.py /
VOLUME /download/
RUN pip install manga-py
RUN pip install sqlalchemy
RUN pip install pymysql
CMD ["python", "./main.py"]