nhentai/Dockerfile
2023-02-06 00:48:53 +08:00

13 lines
205 B
Docker

FROM python:3
WORKDIR /usr/src/nhentai
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN python setup.py install
WORKDIR /output
# ENTRYPOINT ["nhentai"]
CMD bash