Spaces:
Sleeping
Sleeping
FROM python:3.10.2-slim-buster | |
WORKDIR /app | |
COPY ./requirements.txt /app/requirements.txt | |
COPY pipelin.pkl /app/pipelin.pkl | |
RUN pip install --no cache-dir -- upgrade -r requirements.txt /app/requirements.txt | |
COPY . . | |
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"] | |