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 dc83de0 commit 112b0b6Copy full SHA for 112b0b6
codeserver/ubi9-python-3.12/Dockerfile.konflux.cpu
@@ -137,7 +137,17 @@ USER 0
137
WORKDIR /opt/app-root/bin
138
139
# Install useful OS packages
140
-RUN dnf install -y jq git-lfs libsndfile && dnf clean all && rm -rf /var/cache/dnf
+RUN /bin/bash <<'EOF'
141
+set -Eeuxo pipefail
142
+PACKAGES=(
143
+ jq git-lfs libsndfile
144
+ # provides envsubst which is required by run-nginx.sh
145
+ gettext
146
+)
147
+dnf install -y "${PACKAGES[@]}"
148
+dnf clean all
149
+rm -rf /var/cache/dnf
150
+EOF
151
152
# wait for rpm-base stage (rpm builds for ppc64le and s390x)
153
COPY --from=rpm-base /tmp/control /dev/null
0 commit comments