Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +22 -26
Dockerfile
CHANGED
@@ -1,37 +1,33 @@
|
|
1 |
-
# Use
|
2 |
FROM python:3.10-slim
|
3 |
|
4 |
-
#
|
5 |
-
|
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
|
14 |
-
|
15 |
-
|
16 |
-
|
17 |
-
|
18 |
-
|
19 |
-
|
20 |
-
|
|
|
|
|
|
|
|
|
|
|
21 |
RUN mkdir -p /app/uploads /app/compiled && chmod -R 777 /app/uploads /app/compiled
|
22 |
|
|
|
|
|
|
|
23 |
|
24 |
-
# Copy
|
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
|
34 |
EXPOSE 7860
|
35 |
|
36 |
-
#
|
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"]
|