GOGO_rag / Dockerfile
GOGO198's picture
Create Dockerfile
edd3bfa verified
raw
history blame contribute delete
107 Bytes
FROM python:3.10-slim
RUN pip install transformers faiss-cpu torch
COPY app.py .
CMD ["python", "app.py"]