nhentai/Dockerfile
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"]