RAG_SPACE_V2 / Dockerfile
NimrodDev's picture
clean push – no secrets
37c33ae
raw
history blame contribute delete
154 Bytes
FROM python:3.11-slim
WORKDIR /code
COPY requirements.txt .
RUN pip install -r requirements.txt
COPY . .
CMD ["gunicorn", "app:app", "-b", "0.0.0.0:7860"]