self-healing-ragops / Dockerfile
saherPervaiz's picture
Update Dockerfile
d45f041 verified
raw
history blame contribute delete
263 Bytes
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"]