Skip to content
Merged
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: 2 additions & 1 deletion 10.0/runtime/Dockerfile.rhel9
Original file line number Diff line number Diff line change
Expand Up @@ -43,8 +43,9 @@ COPY ./root/usr/bin /usr/bin

# Install packages:
# - dotnet-runtime-*: provides the .NET shared framework.
# - findutils: provides 'find' which is used by the 'fix-permissions' script.
RUN [ -n "${DOTNET_TARBALL}" ] || ( \
INSTALL_PKGS="dotnet-runtime-10.0 shadow-utils tar gzip" && \
INSTALL_PKGS="dotnet-runtime-10.0 findutils shadow-utils tar gzip" && \
microdnf install -y --setopt=tsflags=nodocs --setopt=install_weak_deps=0 $INSTALL_PKGS && \
# ubi-minimal doesn't include timezones, restore them.
( microdnf reinstall tzdata -y || microdnf update tzdata -y ) && \
Expand Down