Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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 |
-
#
|
19 |
-
|
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 |
-
#
|
23 |
-
RUN
|
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"
|