Skip to content

Commit

Permalink
Upgraded to Bootstrap 5, H2 v3, all libraries etc.
Browse files Browse the repository at this point in the history
  • Loading branch information
mbuechner committed Sep 19, 2024
1 parent de18199 commit ea88eb8
Show file tree
Hide file tree
Showing 64 changed files with 3,109 additions and 4,330 deletions.
1 change: 1 addition & 0 deletions .gitignore
Original file line number Diff line number Diff line change
Expand Up @@ -26,3 +26,4 @@ hs_err_pid*
/derby.log
/files/
/src/main/resources/.idea
/nbactions.xml
6 changes: 3 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
@@ -1,10 +1,10 @@
FROM maven:3-openjdk-17-slim AS MAVEN_CHAIN
FROM maven:3-openjdk-21-slim AS MAVEN_CHAIN
COPY pom.xml /tmp/
COPY src /tmp/src/
WORKDIR /tmp/
RUN mvn package
RUN mvn clean package

FROM openjdk:17-alpine
FROM openjdk:21-alpine
RUN mkdir /home/beagen
COPY --from=MAVEN_CHAIN /tmp/target/beagen.jar /home/beagen/beagen.jar
WORKDIR /home/beagen/
Expand Down
Loading

0 comments on commit ea88eb8

Please sign in to comment.