4
0
mirror of https://github.com/RicterZ/nhentai.git synced 2025-05-02 09:26:23 +02:00
nhentai/Dockerfile
2025-01-08 09:35:44 +08:00

12 lines
184 B
Docker

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