mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-06-23 15:30:34 -04:00
8 lines
195 B
Docker
8 lines
195 B
Docker
FROM python:3.13
|
|
WORKDIR /app
|
|
|
|
COPY ./requirements.txt .
|
|
RUN pip3 install --no-cache-dir --upgrade -r ./requirements.txt
|
|
|
|
CMD ["fastapi", "dev", "scanner", "--host", "0.0.0.0", "--port", "4389"]
|