sigyllly commited on
Commit
585a750
·
verified ·
1 Parent(s): d3a4ebc

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -5
Dockerfile CHANGED
@@ -15,12 +15,11 @@ RUN dpkg --add-architecture i386 && \
15
  WORKDIR /app
16
  RUN mkdir -p /app/uploads /app/compiled && chmod -R 777 /app/uploads /app/compiled
17
 
18
- # Download and install the .NET Framework redistributable that includes csc.exe
19
- # Replace this link with the correct version you need for csc 4.8
20
- RUN wget https://download.microsoft.com/download/1/2/7/127FAFB4-1D34-4997-8E96-3E9892936C58/ndp48-x86-x64-allos-enu.exe -O dotnet-installer.exe
21
 
22
- # Use Wine to run the installer
23
- RUN wine dotnet-installer.exe /quiet /norestart
24
 
25
  # Verify if csc.exe is installed and accessible
26
  RUN wine64 "C:/Windows/Microsoft.NET/Framework64/v4.0.30319/csc.exe" /help || echo "CSC is installed"
 
15
  WORKDIR /app
16
  RUN mkdir -p /app/uploads /app/compiled && chmod -R 777 /app/uploads /app/compiled
17
 
18
+ # Step 1: Download the .NET Framework 4.8 developer pack installer
19
+ RUN wget https://go.microsoft.com/fwlink/?linkid=2088631 -O dotnet-installer.exe
 
20
 
21
+ # Step 2: Install .NET Framework via Wine
22
+ RUN wine64 dotnet-installer.exe /quiet /norestart
23
 
24
  # Verify if csc.exe is installed and accessible
25
  RUN wine64 "C:/Windows/Microsoft.NET/Framework64/v4.0.30319/csc.exe" /help || echo "CSC is installed"