Spaces:
Build error
Build error
File size: 263 Bytes
677b618 d45f041 677b618 d45f041 677b618 d45f041 |
1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 |
FROM python:3.10
WORKDIR /app
# Copy the whole project
COPY RAGOPSproject/RAGOPS /app
# Install dependencies
RUN pip install --upgrade pip
RUN pip install -r requirements.txt
EXPOSE 8000
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "8000"]
|