pymite6941's picture
fix: allow tmp paths, reduce Groq TPM, suppress trace noise
d4f8be7
Raw
History Blame Contribute Delete
341 Bytes
FROM python:3.11-slim
WORKDIR /app
ENV PYTHONDONTWRITEBYTECODE=1 \
PYTHONUNBUFFERED=1 \
CREWAI_TOOLS_ALLOW_UNSAFE_PATHS=true
COPY requirements.txt .
RUN pip install --no-cache-dir litellm
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
EXPOSE 7860
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]