Skip to content

Commit

Permalink
Add python3-pip and drop easy_install
Browse files Browse the repository at this point in the history
`easy_install` wasn't working; let's just add this dep.
  • Loading branch information
stefanvanburen committed Jan 15, 2025
1 parent df1c3dc commit b48fb10
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -13,6 +13,7 @@ ENV INSTALL_DEPS \
maven \
patch \
python3.9 \
python3-pip \
apt-transport-https \
curl \
openjdk-8-jdk \
Expand Down Expand Up @@ -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 . .

Expand Down

0 comments on commit b48fb10

Please sign in to comment.