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"]