Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- 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
|
8 |
-
RUN
|
9 |
-
apt-get
|
10 |
-
apt-get install -y wine wget wine32 curl xvfb && \
|
11 |
rm -rf /var/lib/apt/lists/*
|
12 |
|
13 |
-
# Create necessary directories
|
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 ["
|
|
|
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"]
|