Spylif/FastAPI-Vector-Model
0
1FROM python:3.102 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY app.py .9 10EXPOSE 786011 12CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]13 1FROM python:3.102 3WORKDIR /app4 5COPY requirements.txt .6RUN pip install --no-cache-dir -r requirements.txt7 8COPY app.py .9 10EXPOSE 786011 12CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]13