From 8304d49cc3304a3934425b09e523b7756d923415 Mon Sep 17 00:00:00 2001 From: Quan TRAN Date: Thu, 21 Apr 2022 23:01:34 +0200 Subject: [PATCH] remove pip from debian-based images Signed-off-by: Quan TRAN --- Dockerfile.debian | 2 +- Dockerfile.ubuntu | 2 +- 2 files changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile.debian b/Dockerfile.debian index d29201ab..13fc5655 100644 --- a/Dockerfile.debian +++ b/Dockerfile.debian @@ -18,7 +18,7 @@ LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile RUN apt update -qq && \ apt install --no-install-recommends -y \ ca-certificates \ - git bash curl jq pip wget openssh-client && \ + git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* ARG HELM_VERSION="v3.7.2" diff --git a/Dockerfile.ubuntu b/Dockerfile.ubuntu index e92cd5ec..9a34c888 100644 --- a/Dockerfile.ubuntu +++ b/Dockerfile.ubuntu @@ -18,7 +18,7 @@ LABEL org.opencontainers.image.source https://github.com/helmfile/helmfile RUN apt update -qq && \ apt install --no-install-recommends -y \ ca-certificates \ - git bash curl jq pip wget openssh-client && \ + git bash curl jq wget openssh-client && \ rm -rf /var/lib/apt/lists/* ARG HELM_VERSION="v3.7.2"