-
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.
Merge pull request #78 from ADORSYS-GIS/56-image-repository-and-conta…
…iner-registry-for-the-backende8 56 image repository and container registry for the backende8
- Loading branch information
Showing
2 changed files
with
14 additions
and
1 deletion.
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
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,13 @@ | ||
# Run stage | ||
FROM openjdk:17-jdk-slim | ||
|
||
WORKDIR /webank-OnlineBanking | ||
|
||
# py the JAR file from the online-banking-app module | ||
COPY ./online-banking-app/target/online-banking-app-0.1-SNAPSHOT.jar /webank-OnlineBanking/online-banking-app-0.1-SNAPSHOT.jar | ||
|
||
# Expose the port your app runs on | ||
EXPOSE 8080 | ||
|
||
# Run the application | ||
CMD ["java", "-jar", "/webank-OnlineBanking/online-banking-app-0.1-SNAPSHOT.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 |
---|---|---|
|
@@ -30,4 +30,4 @@ build/ | |
!**/src/test/**/build/ | ||
|
||
### VS Code ### | ||
.vscode/ | ||
.vscode/ |