mirror of
https://github.com/RicterZ/nhentai.git
synced 2025-04-19 18:31:24 +02:00
13 lines
205 B
Docker
13 lines
205 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"]
|
|
CMD bash
|