Spaces:
Runtime error
Runtime error
File size: 271 Bytes
0441dad 875fdc1 0441dad 78586a0 0441dad | 1 2 3 4 5 6 7 8 9 | FROM python:3.10.2-slim-buster
WORKDIR /code
COPY ./requirements.txt /code/requirements.txt
COPY pipelin.pkl /code/pipelin.pkl
RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
COPY . .
CMD ["uvicorn", "main:app", "--host", "0.0.0.0", "--port", "7860"]
|