diff options
author | liamfallon <liam.fallon@est.tech> | 2022-07-13 17:43:26 +0100 |
---|---|---|
committer | Liam Fallon <liam.fallon@est.tech> | 2022-07-14 13:50:28 +0000 |
commit | d33c0bc8666ad06f60e861d23c0833eed537354a (patch) | |
tree | d272193a79470f67102cf753f73f479b257be33a | |
parent | 43b2198fcd16ba79f165d58cf01b9107a13c9f6c (diff) |
Fix docker build in Honolulu drools-pdp
Issue-ID: POLICY-4233
Change-Id: I6f884807202fc21f569e188e02d57ef037904257
Signed-off-by: liamfallon <liam.fallon@est.tech>
-rw-r--r-- | packages/docker/src/main/docker/Dockerfile | 2 |
1 files changed, 2 insertions, 0 deletions
diff --git a/packages/docker/src/main/docker/Dockerfile b/packages/docker/src/main/docker/Dockerfile index fb7d4c13..b05f22de 100644 --- a/packages/docker/src/main/docker/Dockerfile +++ b/packages/docker/src/main/docker/Dockerfile @@ -2,6 +2,7 @@ # Dockerfile # ============LICENSE_START======================================================= # Copyright (C) 2020-2021 AT&T Intellectual Property. All rights reserved. +# Modifications Copyright (C) 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. @@ -48,6 +49,7 @@ RUN apk update && \ net-tools netcat-openbsd sudo less vim openssl \ && update-alternatives --install /usr/bin/python python /usr/bin/python3 0 \ && update-alternatives --install /usr/bin/pip pip /usr/bin/pip3 1 \ + && pip install --upgrade pip \ && pip install --no-cache-dir --upgrade setuptools http-prompt \ && pip uninstall -y httpie \ && pip install --no-cache-dir httpie |