Latest update

This commit is contained in:
Lihan 2024-07-27 21:32:52 -04:00
parent 39c4687fa6
commit c95b67697b
2 changed files with 1 additions and 3 deletions

2
.gitignore vendored
View file

@ -1,4 +1,3 @@
target/*
bin/*
build/*
.gradle/*
@ -9,7 +8,6 @@ build/*
.attach_pid*
.idea
*.iml
/target
.sts4-cache/
.vscode
_site/

View file

@ -12,7 +12,7 @@ COPY mvnw pom.xml ./
COPY src ./src
# Package the application
RUN ./mvnw clean package -DskipTests
RUN ./mvnw clean package -Dmaven.test.skip=true
# Copy the JAR file to the app directory
COPY target/*.jar app.jar