Files
mangaDownloader/Dockerfile

13 lines
187 B
Docker

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