refactorisation script

This commit is contained in:
syoul46
2025-10-12 02:10:57 +02:00
parent a942952a8e
commit 8c9392b613
13 changed files with 2727 additions and 157 deletions

View File

@@ -9,8 +9,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
# (Optionnel) encodage propre côté JVM
ENV JAVA_TOOL_OPTIONS="-Dfile.encoding=UTF-8"
# Installer dépendances Python
RUN pip install --no-cache-dir tabula-py pandas
# Copier et installer les dépendances Python
COPY requirements.txt /tmp/requirements.txt
RUN pip install --no-cache-dir -r /tmp/requirements.txt && rm /tmp/requirements.txt
# Copier le script dans l'image
WORKDIR /app