-
Notifications
You must be signed in to change notification settings - Fork 3
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
1 parent
e3a4c1a
commit 5037f42
Showing
4 changed files
with
16 additions
and
3 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
File renamed without changes.
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,13 @@ | ||
|
||
FROM ubuntu:jammy | ||
|
||
# Project setup | ||
ARG PROJECT | ||
|
||
VOLUME /var/log | ||
|
||
# Project install | ||
USER 1000 | ||
ADD --chown=1000:1000 build/native/nativeCompile/$PROJECT / | ||
WORKDIR / | ||
ENTRYPOINT [ "/todo_backend" ] |
4 changes: 2 additions & 2 deletions
4
src/main/resources/META-INF/native-image/com.hexagontk/todo_backend/native-image.properties
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,4 +1,4 @@ | ||
# Community | ||
#Args=-R:MaxHeapSize=16 -march=native | ||
#Args=-R:MaxHeapSize=32 -march=native | ||
# Oracle | ||
Args=-march=native --gc=G1 --enable-sbom | ||
Args=--gc=G1 --enable-sbom |