FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
WISE-API/Dockerfile at develop · WISE-Community/WISE-API · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
WISE-Community
/
WISE-API
Public
Notifications
You must be signed in to change notification settings
Fork
8
Star
5
Code
Issues
6
Pull requests
7
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
WISE-API
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
12 lines (10 loc) · 349 Bytes
Breadcrumbs
WISE-API
/
Dockerfile
Copy path
File metadata and controls
12 lines (10 loc) · 349 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
#
Generate wise-api-server Docker image
#
Stage 1: Build application
FROM
maven:3.9.6-eclipse-temurin-17 as build
WORKDIR
/app
COPY
. .
RUN
mvn package -DskipTests
#
Stage 2: Copy war
FROM
eclipse-temurin:17
COPY
--from=build /app/target/wise.war wise.war
ENTRYPOINT
[
"java"
,
"-jar"
,
"/wise.war"
,
"--spring.config.location=/application.properties"
]
Back
|
FazBrowse Home
|
New Git URL