NewtonKimathi's picture
Docker file
1ba8b59
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", "1.0.0.1", "--port", "7860"]