File tree Expand file tree Collapse file tree 1 file changed +5
-0
lines changed
Expand file tree Collapse file tree 1 file changed +5
-0
lines changed Original file line number Diff line number Diff line change 11FROM python:3.13-alpine AS builder
22
3+ ENV PIP_VERSION=25.0.1
4+
35RUN apk update && apk upgrade && apk add git
46
57WORKDIR /opt/injector_common
@@ -8,6 +10,8 @@ COPY --from=injector_common ./ ./
810WORKDIR /
911RUN 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
1216RUN pip3 install poetry==2.3.2 \
1317 && poetry config installer.re-resolve false \
@@ -34,6 +38,7 @@ ARG PYOAEV_GIT_BRANCH_OVERRIDE
3438RUN 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} ; \
You can’t perform that action at this time.
0 commit comments