RAG / Dockerfile
Aigenthix's picture
Create Dockerfile
a4cbb90 verified
Raw
History Blame Contribute Delete
257 Bytes
FROM python:3.11-slim
RUN apt-get update && apt-get install -y gcc g++
COPY requirements_simple.txt .
RUN pip install -r requirements_simple.txt --no-cache-dir
COPY app_simple.py .
RUN mkdir -p /app/data
WORKDIR /
EXPOSE 7860
CMD ["python", "app_simple.py"]