Spaces:
No application file
No application file
| FROM python:3.9 | |
| WORKDIR /app | |
| COPY . /app | |
| RUN pip install --no-cache-dir fastapi uvicorn transformers torch sentence-transformers scikit-learn python-dotenv google-cloud-bigquery | |
| CMD ["uvicorn", "server:app", "--host", "0.0.0.0", "--port", "8000"] | |