mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-16 08:41:25 +02:00
12 lines
184 B
Docker
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"]
|