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 32dcba0 commit 1de93c1Copy full SHA for 1de93c1
.changelog/4982.txt
@@ -0,0 +1,3 @@
1
+```release-note:security
2
+Add microdnf upgrade in dockerfile to include future security fixes
3
+```
control-plane/Dockerfile
@@ -173,7 +173,9 @@ ARG TARGETARCH
173
# Copy license for Red Hat certification.
174
COPY LICENSE /licenses/mozilla.txt
175
176
-RUN microdnf install -y ca-certificates libcap openssl shadow-utils iptables
+RUN microdnf update -y && \
177
+ microdnf install -y ca-certificates libcap openssl shadow-utils iptables && \
178
+ microdnf clean all
179
180
# Create a non-root user to run the software. On OpenShift, this
181
# will not matter since the container is run as a random user and group
0 commit comments