api_search_articles / Dockerfile
Loren's picture
Upload 6 files
70ca2a3 verified
raw
history blame contribute delete
400 Bytes
# Utiliser Python 3.11 slim
FROM python:3.11-slim
WORKDIR /app
# Copier le code et la base SQLite
COPY requirements.txt .
COPY app ./app
# Installer les dépendances
RUN pip install --no-cache-dir -r requirements.txt
# Exposer port (Hugging Face Spaces utilise 7860 par d�faut)
EXPOSE 7860
# Lancer FastAPI
CMD ["uvicorn", "app.main:app", "--host", "0.0.0.0", "--port", "7860"]