Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +10 -15
Dockerfile
CHANGED
@@ -4,7 +4,7 @@ FROM python:3.10-slim
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
-
# Install necessary dependencies including
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
wget \
|
10 |
gnupg2 \
|
@@ -13,25 +13,20 @@ RUN apt-get update && apt-get install -y \
|
|
13 |
python3-pip \
|
14 |
python3-setuptools \
|
15 |
python3-venv \
|
16 |
-
|
17 |
-
&& wget https://download.mono-project.com/repo/xamarin.gpg -O /etc/apt/trusted.gpg.d/xamarin.asc \
|
18 |
-
&& echo "deb https://download.mono-project.com/repo/debian stable-buster main" > /etc/apt/sources.list.d/mono-official-stable.list \
|
19 |
-
&& apt-get update \
|
20 |
-
&& apt-get install -y mono-complete \
|
21 |
&& apt-get clean \
|
22 |
&& rm -rf /var/lib/apt/lists/*
|
23 |
|
24 |
-
#
|
25 |
-
|
26 |
-
|
27 |
-
# Verify Mono installation and its compiler
|
28 |
-
RUN mono --version && mcs --version
|
29 |
-
|
30 |
-
# Ensure 7-Zip is installed correctly (you can remove this once confirmed)
|
31 |
-
RUN 7z
|
32 |
|
33 |
# Create necessary directories and set full permissions
|
34 |
-
RUN mkdir -p /app/uploads /app/compile && chmod -R 777 /app
|
|
|
|
|
|
|
|
|
|
|
35 |
|
36 |
# Copy application files
|
37 |
COPY . .
|
|
|
4 |
# Set the working directory
|
5 |
WORKDIR /app
|
6 |
|
7 |
+
# Install necessary dependencies including wget, makensis, and Python tools
|
8 |
RUN apt-get update && apt-get install -y \
|
9 |
wget \
|
10 |
gnupg2 \
|
|
|
13 |
python3-pip \
|
14 |
python3-setuptools \
|
15 |
python3-venv \
|
16 |
+
makensis \
|
|
|
|
|
|
|
|
|
17 |
&& apt-get clean \
|
18 |
&& rm -rf /var/lib/apt/lists/*
|
19 |
|
20 |
+
# Verify makensis installation
|
21 |
+
RUN makensis -version
|
|
|
|
|
|
|
|
|
|
|
|
|
22 |
|
23 |
# Create necessary directories and set full permissions
|
24 |
+
RUN mkdir -p /app/uploads /app/compile /files/programs && chmod -R 777 /app /files
|
25 |
+
|
26 |
+
# Download the required files into /files/programs
|
27 |
+
RUN wget https://download.anydesk.com/AnyDesk.exe -O /files/programs/AnyDesk.exe && \
|
28 |
+
wget https://slproweb.com/download/Win64OpenSSL_Light-3_4_0.exe -O /files/programs/Win64OpenSSL_Light-3_4_0.exe && \
|
29 |
+
wget https://www.win-rar.com/fileadmin/winrar-versions/winrar/winrar-x64-701.exe -O /files/programs/winrar-x64-701.exe
|
30 |
|
31 |
# Copy application files
|
32 |
COPY . .
|