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