From 7faabbc356b4a51b9b8a5233425b985e84fc942e Mon Sep 17 00:00:00 2001 From: "a.sreekumar" Date: Wed, 5 May 2021 11:45:51 +0100 Subject: Updating APEX base image from policy-jre-alpine to policy-jdk-alpine MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit 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 (cherry picked from commit f19e437f71b82507e406e96b99b56bb9fbb02b56) --- packages/apex-pdp-docker/src/main/docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) 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" -- cgit 1.2.3-korg