Reworked download method use ORM instead of straight SQL. Hoping this fixes the database timeout issue. Also added requirements.txt with all the python packages needed

This commit is contained in:
Dan Dembinski
2020-03-11 14:34:49 -04:00
parent abb101a8a7
commit 4581fce3b4
3 changed files with 93 additions and 85 deletions

View File

@@ -3,9 +3,9 @@ ADD main.py /
VOLUME /download/
RUN pip install -r requirements.txt
RUN pip install manga-py
RUN pip install sqlalchemy
RUN pip install pymysql
CMD ["python", "./main.py"]