diff options
author | saul.gill <saul.gill@est.tech> | 2022-02-07 09:19:55 +0000 |
---|---|---|
committer | saul.gill <saul.gill@est.tech> | 2022-02-07 09:20:01 +0000 |
commit | 59e2d88e6cc22b85050c264729369c969cba444f (patch) | |
tree | 1cd64ec3344f0eb132895e0b54751c0d1ea857e4 /policy-jdk/alpine | |
parent | 1e928ccfb7573a135a6fed4bd3309b8ca520a693 (diff) |
Fix failing build in jdk base image
Fix originally put in drools-pdp
Upgraded Python pip package as was causing build failure
Issue-ID: POLICY-3905
Change-Id: Ib5320790914a6a1344ae0548aeda3c7cf4585734
Signed-off-by: saul.gill <saul.gill@est.tech>
Diffstat (limited to 'policy-jdk/alpine')
-rw-r--r-- | policy-jdk/alpine/src/main/docker/Dockerfile | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/policy-jdk/alpine/src/main/docker/Dockerfile b/policy-jdk/alpine/src/main/docker/Dockerfile index 7f8fd91b..ca4021b1 100644 --- a/policy-jdk/alpine/src/main/docker/Dockerfile +++ b/policy-jdk/alpine/src/main/docker/Dockerfile @@ -1,7 +1,7 @@ # ============LICENSE_START======================================================= # Copyright (C) 2019 Tieto. All rights reserved. # Modifications Copyright (C) 2020, 2021 AT&T Intellectual Property. All rights reserved. -# Modifications Copyright (C) 2020 Nordix Foundation. +# Modifications Copyright (C) 2020, 2022 Nordix Foundation. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -54,4 +54,5 @@ RUN rm -rf /opt/java/openjdk \ && addgroup -S policy \ && adduser -S --shell /bin/sh -G policy policy \ && mkdir -p ${POLICY_HOME}/ \ - && chown policy:policy ${POLICY_HOME} + && chown policy:policy ${POLICY_HOME} \ + && pip install --upgrade pip==22.0.3 |