Spaces:
Sleeping
Sleeping
File size: 271 Bytes
210fa22 fa93057 210fa22 dee1263 210fa22 | 1 2 3 4 5 6 7 8 | FROM python:3.10-slim
WORKDIR /app
RUN apt-get update && apt-get install -y git && rm -rf /var/lib/apt/lists/*
RUN pip install --no-cache-dir fastapi uvicorn pydantic requests openai openenv-core
COPY . .
ENV PYTHONPATH=/app
EXPOSE 7860
CMD ["python", "-m", "server.app"] |