quickaid / Dockerfile
itskdhere's picture
Upload 7 files
aec98fe verified
raw
history blame contribute delete
209 Bytes
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"]