sepsis-api / Dockerfile
mancatha
docker
c1218ac
raw
history blame contribute delete
160 Bytes
FROM python:3.11.6
WORKDIR /app
COPY . /app
RUN pip install -r requirements.txt
EXPOSE 800
CMD ["uvicorn","main:app", "--host", "0.0.0.0", "--port","800"]