4
0
mirror of https://github.com/RicterZ/nhentai.git synced 2025-04-29 15:50:48 +02:00
2023-02-06 00:49:29 +08:00

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