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

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +22 -29
Dockerfile CHANGED
@@ -1,38 +1,31 @@
1
- # Use an official Python slim image for the base
2
- FROM python:3.10-slim
3
-
4
- # Install Wine and dependencies for running Windows applications
5
- RUN dpkg --add-architecture i386 && \
6
- apt-get update && \
7
- apt-get install -y --no-install-recommends \
8
- wine64 \
9
- wine32 \
10
- wget \
11
- apt-utils && \
12
- apt-get clean
13
-
14
- # Create directories and set permissions
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"
26
 
27
- # Copy the requirements file and install Python dependencies
28
- COPY requirements.txt .
29
- RUN pip install -r requirements.txt
30
 
31
- # Copy the Flask app files
32
- COPY . .
33
 
34
- # Expose the Flask app port
35
- EXPOSE 7860
 
 
 
 
 
36
 
37
- # Run the Flask application
38
  CMD ["python", "main.py"]
 
1
+ # Use the .NET 6 SDK image
2
+ FROM mcr.microsoft.com/dotnet/sdk:6.0 AS build-env
3
+
4
+ # Set the working directory
 
 
 
 
 
 
 
 
 
 
5
  WORKDIR /app
 
6
 
7
+ # Install necessary dependencies
8
+ RUN apt-get update && apt-get install -y wget
9
 
10
+ # Copy project files
11
+ COPY . ./
12
 
13
+ # Install Python dependencies (if needed)
14
+ RUN pip install --no-cache-dir --upgrade -r requirements.txt
15
 
16
+ # Expose the port Flask runs on
17
+ EXPOSE 7860
 
18
 
19
+ # Build and publish the C# project
20
+ RUN dotnet publish -c Release -o out
21
 
22
+ # Use a runtime image for the published output
23
+ FROM mcr.microsoft.com/dotnet/aspnet:6.0
24
+
25
+ WORKDIR /app
26
+
27
+ # Copy the published output from the build stage
28
+ COPY --from=build-env /app/out .
29
 
30
+ # Command to run the Flask app (Python and .NET can run simultaneously)
31
  CMD ["python", "main.py"]