mirror of
https://github.com/RicterZ/nhentai.git
synced 2026-04-08 18:50:21 +02:00
History reset as part of DMCA compliance. The project has been refactored into a generic, site-agnostic download framework. Site-specific logic lives in separate plugin packages. Co-Authored-By: Claude Sonnet 4.6 <noreply@anthropic.com>
10 lines
133 B
Docker
10 lines
133 B
Docker
FROM python:3
|
|
|
|
WORKDIR /usr/src/doujinshi-dl
|
|
|
|
COPY . .
|
|
RUN pip install --no-cache-dir .
|
|
|
|
WORKDIR /output
|
|
ENTRYPOINT ["doujinshi-dl"]
|