cc-api / Dockerfile
Severian's picture
Update Dockerfile
c0dcc0e verified
raw
history blame
220 Bytes
FROM python:3.9-slim
WORKDIR /code
COPY . /code/
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN pip install -e .
EXPOSE 7860
CMD ["uvicorn", "api:app", "--host", "0.0.0.0", "--port", "7860"]