This repository has been archived by the owner on Aug 12, 2023. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Julian
committed
Dec 22, 2022
1 parent
4c8b010
commit 7dd7ce4
Showing
4 changed files
with
12 additions
and
12 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,3 @@ | ||
FROM eclipse-temurin:17 AS builder | ||
COPY . /src | ||
WORKDIR /src | ||
RUN ./gradlew build | ||
|
||
FROM ghcr.io/wisvch/spring-boot-base:2.5.5 | ||
COPY --from=builder /src/build/libs/feedback.jar /srv/feedback.jar | ||
COPY ./build/libs/feedback.jar /srv/feedback.jar | ||
CMD ["/srv/feedback.jar"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -98,6 +98,5 @@ task jacocoFix(type: Copy) { | |
} | ||
} | ||
|
||
test { | ||
maxHeapSize = "4096m" | ||
} | ||
check.dependsOn jacocoTestReport | ||
|
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1 @@ | ||
rootProject.name = 'feedback' |