apres correction et finalisatio de la synchronisation

This commit is contained in:
2025-08-11 12:37:08 +01:00
parent e1ef4c3b7e
commit 512e1cf367
202 changed files with 4642 additions and 3695 deletions

14
Dockerfile Normal file
View File

@@ -0,0 +1,14 @@
# Étape 1 : Build avec Maven et Java 17
FROM openjdk:17-jdk-slim
WORKDIR /app
# Copier le .jar compilé depuis l'étape précédente
COPY ./target/Fiscad-0.0.1-SNAPSHOT.jar fiscad.jar
# Exposer le port configuré
EXPOSE 8282
# Lancer l'application
ENTRYPOINT ["java", "-jar", "fiscad.jar"]