first commit

This commit is contained in:
root
2025-12-28 20:44:40 +00:00
commit eddc35f2a0
4 changed files with 121 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
FROM python:3.11-slim
WORKDIR /app
# Installer dépendances
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
# Copier scripts
COPY run.py .
COPY entrypoint.sh .
# Rendre le script exécutable
RUN chmod +x entrypoint.sh
# Entrypoint
ENTRYPOINT ["/app/entrypoint.sh"]