Update dotnet
All checks were successful
Build container / fedora-build (push) Successful in 7m2s

This commit is contained in:
maurice
2025-10-28 10:03:48 +01:00
parent a3abeb44d7
commit f0a71e9d47
2 changed files with 8 additions and 1 deletions

View File

@@ -3,7 +3,7 @@ FROM git.plabble.org/maurice/fedora:main
USER root
RUN dnf -y install dotnet-sdk-9.0
COPY scripts/install-roslyn.sh /tmp/install-roslyn.sh
COPY install-roslyn.sh /tmp/install-roslyn.sh
RUN chmod +x /tmp/install-roslyn.sh && /tmp/install-roslyn.sh
USER user

View File

@@ -0,0 +1,7 @@
FROM git.plabble.org/maurice/dotnet:main
ARG rider_version="2025.2.3"
ARG download_uri="https://download.jetbrains.com/rider/JetBrains.Rider-${rider_version}.tar.gz"
RUN curl -o /tmp/rider.tar.gz ${download_uri} && \
tar -zxf /tmp/rider.tar.gz -C /home/user/Rider