Spaces:
Paused
Paused
File size: 295 Bytes
f3350ab feb9604 f3350ab 9f58cae | 1 2 3 4 5 6 7 8 9 10 11 12 13 14 15 16 | FROM python:3.11-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir --timeout=200 --retries=5 -r requirements.txt
COPY app.py .
COPY ingest.py .
COPY retriever.py .
COPY french_brands.py .
COPY data ./data
# EXPOSE $PORT
CMD uvicorn app:app --host 0.0.0.0 --port $PORT |