Sepsis-prediction-App / Dockerfile
QuophyDzifa's picture
Update Dockerfile
4bb1a2f
raw
history blame contribute delete
226 Bytes
FROM python:3.9-slim
WORKDIR /app
COPY ./requirements.txt /app
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
EXPOSE 7860
COPY . .
CMD ["uvicorn", "src.main:app", "--host", "0.0.0.0", "--port", "7860"]