FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
rmlmapper-java/Dockerfile at development · RMLio/rmlmapper-java · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
RMLio
/
rmlmapper-java
Public
Notifications
You must be signed in to change notification settings
Fork
67
Star
202
Code
Issues
59
Pull requests
3
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
rmlmapper-java
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
16 lines (11 loc) · 402 Bytes
Breadcrumbs
rmlmapper-java
/
Dockerfile
Copy path
File metadata and controls
16 lines (11 loc) · 402 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
13
14
15
16
#
Build image
FROM
maven:3.9.12-eclipse-temurin-21-alpine AS buildimage
ADD
. /rmlmapper-java
WORKDIR
/rmlmapper-java
RUN
mvn -Pno-buildnumber clean package -DskipTests=true
RUN
mv $(readlink -f target/rmlmapper-*-all.jar) /rmlmapper.jar
#
"Runtime" image
FROM
eclipse-temurin:25-jre
COPY
--from=buildimage /rmlmapper.jar /rmlmapper.jar
WORKDIR
/data
ENTRYPOINT
[
"java"
,
"-jar"
,
"/rmlmapper.jar"
]
Back
|
FazBrowse Home
|
New Git URL