diff --git a/2024.3/dotnet-community/Dockerfile b/2024.3/dotnet-community/Dockerfile index 1022337..ad2ae42 100644 --- a/2024.3/dotnet-community/Dockerfile +++ b/2024.3/dotnet-community/Dockerfile @@ -14,6 +14,7 @@ ARG DOTNET_INSTALL_SH_REVISION="40434288dc5bbda41eafcbcbbc5c0fbbe028fb30" ARG DOTNET_CHANNEL_A="7.0" ARG DOTNET_CHANNEL_B="6.0" ARG DOTNET_CHANNEL_C="8.0" +ARG DOTNET_CHANNEL_D="9.0" # hadolint ignore=SC2174,DL3009 RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \ @@ -38,6 +39,7 @@ RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \ bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_A -i $DOTNET_ROOT && \ bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_B -i $DOTNET_ROOT && \ bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_C -i $DOTNET_ROOT && \ + bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_D -i $DOTNET_ROOT && \ chmod 777 -R $DOTNET_ROOT && \ chmod 777 -R $HOME && \ echo 'root:x:0:0:root:/root:/bin/bash' > /etc/passwd && chmod 666 /etc/passwd && \ diff --git a/2024.3/dotnet/Dockerfile b/2024.3/dotnet/Dockerfile index 909bb4e..1a68a67 100644 --- a/2024.3/dotnet/Dockerfile +++ b/2024.3/dotnet/Dockerfile @@ -24,6 +24,7 @@ ARG DOTNET_INSTALL_SH_REVISION="40434288dc5bbda41eafcbcbbc5c0fbbe028fb30" ARG DOTNET_CHANNEL_A="7.0" ARG DOTNET_CHANNEL_B="6.0" ARG DOTNET_CHANNEL_C="8.0" +ARG DOTNET_CHANNEL_D="9.0" # hadolint ignore=SC2174,DL3009 RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \ @@ -53,6 +54,7 @@ RUN --mount=target=/var/lib/apt/lists,type=cache,sharing=locked \ bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_A -i $DOTNET_ROOT && \ bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_B -i $DOTNET_ROOT && \ bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_C -i $DOTNET_ROOT && \ + bash /tmp/dotnet-install.sh -c $DOTNET_CHANNEL_D -i $DOTNET_ROOT && \ chmod 777 -R $DOTNET_ROOT ENV PATH="/opt/yarn/bin:$PATH"