Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
3 changes: 3 additions & 0 deletions .changelog/4982.txt
Original file line number Diff line number Diff line change
@@ -0,0 +1,3 @@
```release-note:security
Add microdnf upgrade in dockerfile to include future security fixes
```
4 changes: 3 additions & 1 deletion control-plane/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -173,7 +173,9 @@ ARG TARGETARCH
# Copy license for Red Hat certification.
COPY LICENSE /licenses/mozilla.txt

RUN microdnf install -y ca-certificates libcap openssl shadow-utils iptables
RUN microdnf update -y && \
microdnf install -y ca-certificates libcap openssl shadow-utils iptables && \
microdnf clean all

# Create a non-root user to run the software. On OpenShift, this
# will not matter since the container is run as a random user and group
Expand Down
Loading