sigyllly commited on
Commit
9785135
·
verified ·
1 Parent(s): 872f6da

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +6 -15
Dockerfile CHANGED
@@ -4,22 +4,13 @@ FROM python:3.10-slim
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
- # Install dependencies including Wine, xvfb, and enable multiarch support
8
- RUN dpkg --add-architecture i386 && \
9
- apt-get update && \
10
- apt-get install -y wine wget wine32 curl xvfb && \
11
  rm -rf /var/lib/apt/lists/*
12
 
13
- # Create necessary directories and set permissions
14
- RUN mkdir uploads compiled && \
15
- chmod -R 777 uploads compiled
16
-
17
- # Download and install Inno Setup
18
- RUN wget -O is.exe "https://files.jrsoftware.org/is/6/innosetup-6.3.3.exe" && \
19
- xvfb-run wine is.exe /SILENT
20
-
21
- # Initialize Wine configuration
22
- RUN xvfb-run winecfg
23
 
24
  # Copy the requirements file
25
  COPY ./requirements.txt /app/requirements.txt
@@ -34,4 +25,4 @@ COPY . .
34
  EXPOSE 7860
35
 
36
  # Command to run the Flask app
37
- CMD ["sh", "-c", "Xvfb :99 -screen 0 1024x768x24 & python main.py"]
 
4
  # Set the working directory
5
  WORKDIR /app
6
 
7
+ # Install dependencies including NSIS
8
+ RUN apt-get update && \
9
+ apt-get install -y nsis wget && \
 
10
  rm -rf /var/lib/apt/lists/*
11
 
12
+ # Create necessary directories
13
+ RUN mkdir uploads compiled
 
 
 
 
 
 
 
 
14
 
15
  # Copy the requirements file
16
  COPY ./requirements.txt /app/requirements.txt
 
25
  EXPOSE 7860
26
 
27
  # Command to run the Flask app
28
+ CMD ["python", "main.py"]