sigyllly commited on
Commit
7dfb4c7
·
verified ·
1 Parent(s): 7549384

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +22 -26
Dockerfile CHANGED
@@ -1,37 +1,33 @@
1
- # Use the official Python image
2
  FROM python:3.10-slim
3
 
4
- # Set the working directory
5
- WORKDIR /app
6
-
7
- # Install dependencies including .NET SDK and wget
8
- RUN apt-get update && \
9
- apt-get install -y wget gnupg ca-certificates && \
10
- wget https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb -O packages-microsoft-prod.deb && \
11
- dpkg -i packages-microsoft-prod.deb && \
12
  apt-get update && \
13
- apt-get install -y dotnet-sdk-6.0 && \
14
- rm -rf /var/lib/apt/lists/*
15
-
16
- # Create necessary directories and set permissions
17
- RUN mkdir uploads compiled && \
18
- chmod -R 777 uploads compiled
19
-
20
- # Set permissions for uploads and compiled directories
 
 
 
 
 
21
  RUN mkdir -p /app/uploads /app/compiled && chmod -R 777 /app/uploads /app/compiled
22
 
 
 
 
23
 
24
- # Copy the requirements file
25
- COPY ./requirements.txt /app/requirements.txt
26
-
27
- # Install Python dependencies
28
- RUN pip install --no-cache-dir --upgrade -r /app/requirements.txt
29
-
30
- # Copy the Flask app files
31
  COPY . .
32
 
33
- # Expose the port the app runs on
34
  EXPOSE 7860
35
 
36
- # Command to run the Flask app
37
  CMD ["python", "main.py"]
 
1
+ # Use an official Python slim image
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
+ # Download and install the .NET Framework version that includes csc.exe
15
+ RUN wget https://download-link-for-csc-version-4.8.exe -O dotnet-installer.exe && \
16
+ wine dotnet-installer.exe
17
+
18
+ # Set up working directories and permissions
19
+ WORKDIR /app
20
  RUN mkdir -p /app/uploads /app/compiled && chmod -R 777 /app/uploads /app/compiled
21
 
22
+ # Copy the Python requirements and install Flask
23
+ COPY requirements.txt .
24
+ RUN pip install -r requirements.txt
25
 
26
+ # Copy all app files
 
 
 
 
 
 
27
  COPY . .
28
 
29
+ # Expose the Flask app port
30
  EXPOSE 7860
31
 
32
+ # Run the Flask application
33
  CMD ["python", "main.py"]