aboutsummaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
authora.sreekumar <ajith.sreekumar@bell.ca>2021-05-05 11:45:51 +0100
committerAjith Sreekumar <ajith.sreekumar@bell.ca>2021-05-05 11:18:55 +0000
commitf19e437f71b82507e406e96b99b56bb9fbb02b56 (patch)
tree064b9b0d8a2c7358c1e31063424e36a85ee10974
parente57a113a469c36f5ca483fe3a8f35bb5fd657691 (diff)
Updating APEX base image from policy-jre-alpine to policy-jdk-alpine
The stackoverflow issue is happening only in standalone mode when RestManager class is called from APEX Javascript logic to post a JSON body, that too 6-7 out of 10 times. To identify the exact root cause may need more investigation, but changing the base image from policy-jre-alpine to policy-jdk-alpine seems to have fixed the issue during local testing. (Issue didn't happen 10 out of 10 times) Change-Id: Ibe718294ff9ab04c70349b3bc52c3c66619f2093 Issue-ID: POLICY-3066 Signed-off-by: a.sreekumar <ajith.sreekumar@bell.ca>
-rw-r--r--packages/apex-pdp-docker/src/main/docker/Dockerfile2
1 files changed, 1 insertions, 1 deletions
diff --git a/packages/apex-pdp-docker/src/main/docker/Dockerfile b/packages/apex-pdp-docker/src/main/docker/Dockerfile
index e1f28ebed..f1b02343f 100644
--- a/packages/apex-pdp-docker/src/main/docker/Dockerfile
+++ b/packages/apex-pdp-docker/src/main/docker/Dockerfile
@@ -23,7 +23,7 @@
#
# Docker file to build an image that runs APEX on Java 11 or better in alpine
#
-FROM onap/policy-jre-alpine:2.2.1
+FROM onap/policy-jdk-alpine:2.2.1
LABEL maintainer="Policy Team"