Spaces:
Runtime error
Runtime error
File size: 222 Bytes
1dc733c 945748a cb842e7 a918c17 cb842e7 adcf490 cb842e7 adcf490 a3ad727 cb842e7 6fdf5b2 |
1 2 3 4 5 6 7 8 9 10 11 12 13 |
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"] |