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.
2 parents f3f7cb8 + 1e147e0 commit cc45985Copy full SHA for cc45985
runtimes/minimal/ubi9-python-3.11/Dockerfile.cpu
@@ -11,11 +11,11 @@ USER 0
11
# Install useful OS packages
12
RUN ARCH=$(uname -m) && \
13
echo "Detected architecture: $ARCH" && \
14
+ PACKAGES="mesa-libGL skopeo" && \
15
if [ "$ARCH" = "s390x" ]; then \
- dnf install -y mesa-libGL skopeo gcc g++ make openssl-devel autoconf automake libtool cmake; \
16
- else \
17
- dnf install -y mesa-libGL skopeo; \
+ PACKAGES="$PACKAGES gcc g++ make openssl-devel autoconf automake libtool cmake"; \
18
fi && \
+ dnf install -y $PACKAGES && \
19
dnf clean all && rm -rf /var/cache/yum
20
21
# Other apps and tools installed as default user
0 commit comments