Example dockerfile:
FROM debian:trixie
RUN <<EOF
apt-get update
apt-get install --no-install-recommends -y gettext
EOF
The RUN instruction is transformed into apt-get update ; apt-get install --no-install-recommends -y gettext, but commands separated by ; are currently handled incorrectly.
Affected checks:
Discussed in #9334
Example dockerfile:
The RUN instruction is transformed into
apt-get update ; apt-get install --no-install-recommends -y gettext, but commands separated by;are currently handled incorrectly.Affected checks:
Discussed in #9334