Restauration : Docker + CI/CD + entrypoint
Build & Deploy / build (push) Successful in 28s

This commit is contained in:
Mouigni
2026-08-12 00:09:18 +02:00
parent 1f7d06c26d
commit c4aeedd032
4 changed files with 67 additions and 0 deletions
+12
View File
@@ -0,0 +1,12 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
RUN chmod +x entrypoint.sh
EXPOSE 8000
CMD ["./entrypoint.sh"]