Files
mangaDownloader/Dockerfile
2020-03-11 14:46:16 -04:00

12 lines
160 B
Docker

FROM python:3
ADD main.py /
ADD requirements.txt
VOLUME /download/
RUN pip install -r requirements.txt
RUN pip install manga-py
CMD ["python", "./main.py"]