Skip to content

Commit

Permalink
merge repos
Browse files Browse the repository at this point in the history
  • Loading branch information
janosmiko committed Dec 29, 2023
1 parent 4b104eb commit 8c6b01f
Show file tree
Hide file tree
Showing 6 changed files with 6 additions and 6 deletions.
2 changes: 1 addition & 1 deletion images/ansible/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN set -eux \
py3-cryptography \
&& PIP_ARGS="" \
&& eval 'version_gt() { test "$(printf "%s\n" "$@" | sort -V | head -n 1)" != "$1"; }' \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2)" "3.18.99"; then PIP_ARGS="--break-system-packages"; fi \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2 | tr -d '"')" "3.18.99"; then PIP_ARGS="--break-system-packages"; fi \
&& pip3 install --upgrade pip $PIP_ARGS \
&& pip3 install --no-cache-dir $PIP_ARGS \
'ansible<2.11' \
Expand Down
2 changes: 1 addition & 1 deletion images/ansible/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN set -eux \
python3-setuptools \
&& PIP_ARGS="" \
&& eval 'version_gt() { test "$(printf "%s\n" "$@" | sort -V | head -n 1)" != "$1"; }' \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2)" "11"; then PIP_ARGS="--break-system-packages"; fi \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2 | tr -d '"')" "11"; then PIP_ARGS="--break-system-packages"; fi \
&& pip3 install --upgrade pip ${PIP_ARGS} \
&& pip3 install --no-cache-dir ${PIP_ARGS} \
'ansible<2.11' \
Expand Down
2 changes: 1 addition & 1 deletion images/aws/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -8,7 +8,7 @@ RUN set -eux \
py3-pip \
&& PIP_ARGS="" \
&& eval 'version_gt() { test "$(printf "%s\n" "$@" | sort -V | head -n 1)" != "$1"; }' \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2)" "3.18.99"; then PIP_ARGS="--break-system-packages"; fi \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2 | tr -d '"')" "3.18.99"; then PIP_ARGS="--break-system-packages"; fi \
&& pip3 install --upgrade pip $PIP_ARGS \
&& pip3 install --no-cache-dir --break-system-packages \
awscli \
Expand Down
2 changes: 1 addition & 1 deletion images/aws/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@ RUN set -eux \
python3-setuptools \
&& PIP_ARGS="" \
&& eval 'version_gt() { test "$(printf "%s\n" "$@" | sort -V | head -n 1)" != "$1"; }' \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2)" "11"; then PIP_ARGS="--break-system-packages"; fi \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2 | tr -d '"')" "11"; then PIP_ARGS="--break-system-packages"; fi \
&& pip3 install --no-cache-dir ${PIP_ARGS} \
awscli \
&& rm -rf /var/lib/apt/lists/*
2 changes: 1 addition & 1 deletion images/extended/alpine/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -10,7 +10,7 @@ RUN set -eux \
py3-pip \
&& PIP_ARGS="" \
&& eval 'version_gt() { test "$(printf "%s\n" "$@" | sort -V | head -n 1)" != "$1"; }' \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2)" "3.18.99"; then PIP_ARGS="--break-system-packages"; fi \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2 | tr -d '"')" "3.18.99"; then PIP_ARGS="--break-system-packages"; fi \
&& pip3 install --no-cache-dir $PIP_ARGS \
awscli \
&& curl -fsSLo /tmp/google-cloud-sdk.tar.gz \
Expand Down
2 changes: 1 addition & 1 deletion images/extended/debian/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN set -eux \
python3-setuptools \
&& PIP_ARGS="" \
&& eval 'version_gt() { test "$(printf "%s\n" "$@" | sort -V | head -n 1)" != "$1"; }' \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2)" "11"; then PIP_ARGS="--break-system-packages"; fi \
&& if version_gt "$(cat /etc/os-release | grep 'VERSION_ID=' | cut -d'=' -f2 | tr -d '"')" "11"; then PIP_ARGS="--break-system-packages"; fi \
&& pip3 install --no-cache-dir ${PIP_ARGS} \
awscli \
&& curl -fsSLo /tmp/google-cloud-sdk.tar.gz \
Expand Down

0 comments on commit 8c6b01f

Please sign in to comment.