FROM python:3.10-slim WORKDIR /app RUN pip install uv COPY . . ENV PYTHONPATH="/app" RUN uv pip install --system . CMD ["server"]