Spaces:
Runtime error
Runtime error
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", "127.0.0.1", "--port", "8000"] |