File size: 255 Bytes
8b902f8
 
 
 
efa4e2a
8b902f8
887a27c
 
 
8b902f8
efa4e2a
8b902f8
efa4e2a
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM python:3.12-slim

WORKDIR /app

COPY . .

RUN pip install --no-cache-dir uv \
    && uv pip install --system . \
    && uv pip install --system pytest pytest-cov

EXPOSE 7860

CMD ["uvicorn", "serving.api:app", "--host", "0.0.0.0", "--port", "7860"]