forked from Job79/devcontainer
This commit is contained in:
@@ -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
|
||||
|
||||
7
containers/rider/Containerfile
Normal file
7
containers/rider/Containerfile
Normal 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
|
||||
Reference in New Issue
Block a user