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

12 lines
162 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"]