Kyoo/scanner/Dockerfile
2025-05-26 00:42:25 +02:00

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