get_around_API / Dockerfile
Djohell's picture
first
b79f79f
Raw
History Blame Contribute Delete
300 Bytes
FROM python:3.11-slim
WORKDIR /app
# Copier tous les fichiers
COPY . /app
# Installer les dépendances
RUN pip install --no-cache-dir -r requirements.txt
# Exposer le port attendu par HF
EXPOSE 7860
# Lancer FastAPI
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "7860"]