File tree 3 files changed +9
-24
lines changed
3 files changed +9
-24
lines changed Original file line number Diff line number Diff line change
1
+ obp-api /src /main /resources /props
2
+ ! obp-api /src /main /resources /props /sample.props.template
3
+ ! obp-api /src /main /resources /props /test.default.props.template
Original file line number Diff line number Diff line change 7
7
- completed
8
8
env :
9
9
# # Sets environment variable
10
- DOCKER_HUB_ORGANIZATION : openbankproject
10
+ DOCKER_HUB_ORGANIZATION : ${{ vars.DOCKER_HUB_ORGANIZATION }}
11
11
DOCKER_HUB_REPOSITORY : obp-api
12
12
13
13
Original file line number Diff line number Diff line change 1
- FROM maven:3-jdk-8 as maven
1
+ FROM maven:3-eclipse-temurin-11 as maven
2
2
# Build the source using maven, source is copied from the 'repo' build.
3
3
ADD . /usr/src/OBP-API
4
4
RUN cp /usr/src/OBP-API/obp-api/pom.xml /tmp/pom.xml # For Packaging a local repository within the image
5
5
WORKDIR /usr/src/OBP-API
6
6
RUN cp obp-api/src/main/resources/props/test.default.props.template obp-api/src/main/resources/props/test.default.props
7
7
RUN cp obp-api/src/main/resources/props/sample.props.template obp-api/src/main/resources/props/default.props
8
- RUN --mount=type=cache,target=/root/ .m2 mvn install -pl .,obp-commons
9
- RUN --mount=type=cache,target=/root/ .m2 mvn install -DskipTests -pl obp-api
8
+ RUN --mount=type=cache,target=$HOME/ .m2 MAVEN_OPTS= "-Xmx3G -Xss2m" mvn install -pl .,obp-commons
9
+ RUN --mount=type=cache,target=$HOME/ .m2 MAVEN_OPTS= "-Xmx3G -Xss2m" mvn install -DskipTests -pl obp-api
10
10
11
- FROM openjdk:8-jre -alpine
11
+ FROM jetty:9.4-jdk11 -alpine
12
12
13
- # Add user
14
- RUN adduser -D obp
15
-
16
- # Download jetty
17
- RUN wget -O - https://repo1.maven.org/maven2/org/eclipse/jetty/jetty-distribution/9.4.15.v20190215/jetty-distribution-9.4.15.v20190215.tar.gz | tar zx
18
- RUN mv jetty-distribution-* jetty
19
-
20
- # Copy OBP source code
21
- # Copy build artifact (.war file) into jetty from 'maven' stage.
22
- COPY --from=maven /usr/src/OBP-API/obp-api/target/obp-api-*.war jetty/webapps/ROOT.war
23
-
24
- WORKDIR jetty
25
- RUN chown -R obp /jetty
26
-
27
- # Switch to the obp user (non root)
28
- USER obp
29
-
30
- # Starts jetty
31
- ENTRYPOINT ["java" , "-jar" , "start.jar" ]
13
+ COPY --from=maven /usr/src/OBP-API/obp-api/target/obp-api-1.*.war /var/lib/jetty/webapps/ROOT.war
You can’t perform that action at this time.
0 commit comments