Skip to content

Commit b48fb10

Browse files
Add python3-pip and drop easy_install
`easy_install` wasn't working; let's just add this dep.
1 parent df1c3dc commit b48fb10

File tree

1 file changed

+2
-2
lines changed

1 file changed

+2
-2
lines changed

Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -13,6 +13,7 @@ ENV INSTALL_DEPS \
1313
maven \
1414
patch \
1515
python3.9 \
16+
python3-pip \
1617
apt-transport-https \
1718
curl \
1819
openjdk-8-jdk \
@@ -67,8 +68,7 @@ WORKDIR ${GOPATH}/src/github.com/envoyproxy/protoc-gen-validate
6768

6869
# python tooling for linting and uploading to PyPI
6970
COPY requirements.txt .
70-
RUN python3.9 -m easy_install pip \
71-
&& python3.9 -m pip install -r requirements.txt
71+
RUN pip3 install -r requirements.txt
7272

7373
COPY . .
7474

0 commit comments

Comments
 (0)