First commit (wating to add alerts in budget)

This commit is contained in:
BACHIR SOULDI
2025-09-04 13:21:24 +01:00
parent f70bf3341b
commit 9eb959f07a
192 changed files with 51034 additions and 4992 deletions

17
Dockerfile Normal file
View File

@@ -0,0 +1,17 @@
FROM openjdk:8-jdk-alpine
WORKDIR /app
# Install dos2unix for line-ending fixes
RUN apk add --no-cache bash dos2unix
# Copy everything
COPY . .
# Fix line endings for gradlew
RUN dos2unix ./gradlew && chmod +x ./gradlew
# Clean and run the Gradle app
CMD ["./gradlew", "clean", "run", "--no-daemon"]