Spaces:
Sleeping
Sleeping
File size: 289 Bytes
0441dad |
1 2 3 4 5 6 7 8 9 |
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"]
|