We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent e29f44e commit 91aae0fCopy full SHA for 91aae0f
aws-cli/Dockerfile
@@ -36,7 +36,6 @@ RUN dnf upgrade -y \
36
wget-1.21.3-1.amzn2023.0.4 \
37
xz-5.2.5-9.amzn2023.0.2 \
38
zip-3.0-28.amzn2023.0.2 \
39
- && IFS=$'\n\t' \
40
&& if dnf upgrade -y | tee -a /dev/stderr | grep -q -e '^Nothing to do.' ; then \
41
exit 1 ; \
42
fi \
@@ -47,7 +46,7 @@ RUN dnf upgrade -y \
47
46
# FIXME @TL --break-system-packages not supported until Python 3.11.
48
RUN pip3 install --no-cache-dir --upgrade \
49
pipx==1.7.1 \
50
- && pip3 list --outdated | tee -a /dev/stderr | grep -q -e '^pipx ' ; then \
+ && if pip3 list --outdated | tee -a /dev/stderr | grep -q -e '^pipx ' ; then \
51
52
fi
53
0 commit comments