Files
mangaDownloader/Dockerfile
Dan Dembinski abb101a8a7 Alright, you do in fact need to have the docker file actually start something.
I also swapped the exit command out for a sleep command. It should loop through everything once an hour
2019-12-31 15:21:48 -05:00

11 lines
153 B
Docker

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"]