Up2x / Dockerfile
Another003's picture
Update Dockerfile
7f6fe45 verified
raw
history blame
259 Bytes
FROM python:3.10.9
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
RUN sudo chmod 777 -R ~/.cache
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]