Spaces:
Runtime error
Runtime error
FROM python:3.11-slim | |
WORKDIR /app | |
RUN pip install torch pandas scikit-learn sentence-transformers transformers symspellpy flask gradio | |
COPY . . | |
ENV PORT=5000 | |
EXPOSE ${PORT} | |
CMD ["python", "app.py"] |