mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-18 18:01:24 +02:00
12 lines
194 B
Docker
12 lines
194 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"]
|