Skip to content

Commit d8ca8d5

Browse files
committed
change Dockerfile base image, add dockerignore
1 parent 82d8041 commit d8ca8d5

File tree

3 files changed

+9
-24
lines changed

3 files changed

+9
-24
lines changed

.dockerignore

+3
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,3 @@
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

.github/workflows/run_trivy.yml

+1-1
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ on:
77
- completed
88
env:
99
## Sets environment variable
10-
DOCKER_HUB_ORGANIZATION: openbankproject
10+
DOCKER_HUB_ORGANIZATION: ${{ vars.DOCKER_HUB_ORGANIZATION }}
1111
DOCKER_HUB_REPOSITORY: obp-api
1212

1313

Dockerfile

+5-23
Original file line numberDiff line numberDiff line change
@@ -1,31 +1,13 @@
1-
FROM maven:3-jdk-8 as maven
1+
FROM maven:3-eclipse-temurin-11 as maven
22
# Build the source using maven, source is copied from the 'repo' build.
33
ADD . /usr/src/OBP-API
44
RUN cp /usr/src/OBP-API/obp-api/pom.xml /tmp/pom.xml # For Packaging a local repository within the image
55
WORKDIR /usr/src/OBP-API
66
RUN cp obp-api/src/main/resources/props/test.default.props.template obp-api/src/main/resources/props/test.default.props
77
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
1010

11-
FROM openjdk:8-jre-alpine
11+
FROM jetty:9.4-jdk11-alpine
1212

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

0 commit comments

Comments
 (0)