From b48fb10c2cc2856ac2322ef6273107f3f3c0e39d Mon Sep 17 00:00:00 2001 From: Stefan VanBuren Date: Mon, 13 Jan 2025 13:05:48 -0500 Subject: [PATCH] Add `python3-pip` and drop `easy_install` `easy_install` wasn't working; let's just add this dep. --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 13a56f15f..6f73e3839 100644 --- a/Dockerfile +++ b/Dockerfile @@ -13,6 +13,7 @@ ENV INSTALL_DEPS \ maven \ patch \ python3.9 \ + python3-pip \ apt-transport-https \ curl \ openjdk-8-jdk \ @@ -67,8 +68,7 @@ WORKDIR ${GOPATH}/src/github.com/envoyproxy/protoc-gen-validate # python tooling for linting and uploading to PyPI COPY requirements.txt . -RUN python3.9 -m easy_install pip \ - && python3.9 -m pip install -r requirements.txt +RUN pip3 install -r requirements.txt COPY . .