updating ci

This commit is contained in:
2025-10-17 16:37:24 +02:00
parent 1963237896
commit d6439b8845
5 changed files with 328 additions and 61 deletions

7
Dockerfile Normal file
View File

@@ -0,0 +1,7 @@
FROM 144.91.121.112:8082/java-17
RUN mkdir /app
COPY . /app
WORKDIR /app
RUN mvn clean compile -P develop package
ENTRYPOINT ["/usr/bin/dumb-init", "--"]
CMD ["java", "-Dspring.profiles.active=nflow.db.postgresql", "-jar", "/app/target/tm-0.0.1-RELEASE.jar"]