15 lines
207 B
Docker
15 lines
207 B
Docker
FROM python:3
|
|
ADD main.py /
|
|
ADD requirements.txt /
|
|
ADD templates /templates
|
|
ADD static /static
|
|
|
|
VOLUME /download/
|
|
|
|
RUN pip install -r requirements.txt
|
|
RUN pip install manga-py
|
|
|
|
|
|
|
|
CMD ["python", "./main.py"]
|