Skip to content
Open
Changes from 1 commit
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions images/installer/Dockerfile.upi.ci
Original file line number Diff line number Diff line change
Expand Up @@ -53,6 +53,7 @@ ENV ART_DNF_WRAPPER_POLICY=append
RUN yum update -y && \
yum install --setopt=tsflags=nodocs -y \
gettext \
python3.11 \
google-cloud-cli-563.0.0-1 \
gzip \
jq \
Expand All @@ -73,13 +74,13 @@ COPY --from=yq4 /usr/bin/yq /bin/yq-v4

# Not packaged, but required by gcloud. See https://cloud.google.com/sdk/crypto
# Pin version because of https://github.com/GoogleCloudPlatform/gsutil/issues/1753
RUN pip-3 install cryptography pyOpenSSL==23.2.0
RUN pip3.11 install cryptography pyOpenSSL==23.2.0
Comment thread
coderabbitai[bot] marked this conversation as resolved.
Outdated

ENV CLOUDSDK_PYTHON=/usr/bin/python
ENV CLOUDSDK_PYTHON=/usr/bin/python3.11
ENV CLOUDSDK_PYTHON_SITEPACKAGES=1

# aicli
RUN pip-3 install aicli==99.0.202407291433
RUN pip3.11 install aicli==99.0.202407291433

RUN curl "https://awscli.amazonaws.com/awscli-exe-linux-x86_64.zip" -o "awscliv2.zip" && \
unzip awscliv2.zip && \
Expand Down