-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
feat: push docker image on push to main
- Loading branch information
1 parent
0e25bca
commit 94632e4
Showing
3 changed files
with
120 additions
and
4 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
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,11 @@ | ||
# ---- Runtime Stage ---- | ||
# We use Temurin as it is the default at VHV | ||
FROM eclipse-temurin:21-jre-jammy | ||
|
||
COPY ./inspectit-gepard-agent.jar ./app.jar | ||
|
||
# Expose the port on which the app will run | ||
EXPOSE 8080 | ||
|
||
# Run the application | ||
ENTRYPOINT ["java", "-jar", "/app.jar"] |