NewtonKimathi's picture
Docker file
0e95456
raw
history blame
220 Bytes
FROM python:3.10.9
WORKDIR /app
COPY ./requirements.txt /app
RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
EXPOSE 8000
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]