diff options
-rw-r--r-- | packages/docker/src/main/docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/packages/docker/src/main/docker/Dockerfile b/packages/docker/src/main/docker/Dockerfile index b7f2d62e..f6cd2420 100644 --- a/packages/docker/src/main/docker/Dockerfile +++ b/packages/docker/src/main/docker/Dockerfile @@ -48,9 +48,9 @@ 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 setuptools http-prompt \ + && pip install --no-cache-dir --upgrade setuptools http-prompt \ && pip uninstall -y httpie \ - && pip install httpie==1.0.3 \ + && pip install --no-cache-dir httpie==1.0.3 \ && rm -r /root/.cache RUN mkdir -p $POLICY_CONFIG $POLICY_LOGS $POLICY_INSTALL_INIT && \ |