mirror of
https://github.com/zoriya/Kyoo.git
synced 2025-11-26 16:25:11 -05:00
8 lines
180 B
Docker
8 lines
180 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/main.py", "--port", "80"]
|