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