Skip to content

Commit 0976e14

Browse files
authored
[ci] fix(aws): fix pip version to 25.0.1 (#178)
1 parent dc785dc commit 0976e14

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

aws/Dockerfile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,7 @@
11
FROM python:3.13-alpine AS builder
22

3+
ENV PIP_VERSION=25.0.1
4+
35
RUN apk update && apk upgrade && apk add git
46

57
WORKDIR /opt/injector_common
@@ -8,6 +10,8 @@ COPY --from=injector_common ./ ./
810
WORKDIR /
911
RUN git clone https://github.com/OpenAEV-Platform/client-python
1012

13+
RUN pip3 install --upgrade pip==${PIP_VERSION}
14+
1115
# poetry version available on Ubuntu 24.04
1216
RUN pip3 install poetry==2.3.2 \
1317
&& poetry config installer.re-resolve false \
@@ -34,6 +38,7 @@ ARG PYOAEV_GIT_BRANCH_OVERRIDE
3438
RUN if [[ ${PYOAEV_GIT_BRANCH_OVERRIDE} ]] ; then \
3539
echo "Forcing specific version of client-python" && \
3640
apk add --no-cache git && \
41+
pip install --upgrade pip==${PIP_VERSION} && \
3742
pip install pip3-autoremove && \
3843
pip-autoremove pyoaev -y && \
3944
pip install git+https://github.com/OpenAEV-Platform/client-python@${PYOAEV_GIT_BRANCH_OVERRIDE} ; \

0 commit comments

Comments
 (0)