Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +11 -5
Dockerfile
CHANGED
@@ -17,16 +17,22 @@ RUN apt-get update -y && \
|
|
17 |
nsis nsis-doc nsis-pluginapi && \
|
18 |
rm -rf /var/lib/apt/lists/*
|
19 |
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
20 |
# Verify NSIS 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 . .
|
@@ -38,4 +44,4 @@ RUN pip3 install --no-cache-dir --upgrade -r /app/requirements.txt
|
|
38 |
EXPOSE 7860
|
39 |
|
40 |
# Command to run the Flask app
|
41 |
-
CMD ["python3", "main.py"]
|
|
|
17 |
nsis nsis-doc nsis-pluginapi && \
|
18 |
rm -rf /var/lib/apt/lists/*
|
19 |
|
20 |
+
# Install PowerShell
|
21 |
+
RUN wget -q https://packages.microsoft.com/config/debian/10/packages-microsoft-prod.deb && \
|
22 |
+
dpkg -i packages-microsoft-prod.deb && \
|
23 |
+
apt-get update && \
|
24 |
+
apt-get install -y powershell && \
|
25 |
+
rm packages-microsoft-prod.deb
|
26 |
+
|
27 |
+
# Verify PowerShell installation
|
28 |
+
RUN pwsh --version
|
29 |
+
|
30 |
# Verify NSIS installation
|
31 |
RUN makensis -version
|
32 |
|
33 |
# Create necessary directories and set full permissions
|
34 |
RUN mkdir -p /app/uploads /app/compile /files/programs && chmod -R 777 /app /files
|
35 |
|
|
|
|
|
|
|
|
|
36 |
|
37 |
# Copy application files
|
38 |
COPY . .
|
|
|
44 |
EXPOSE 7860
|
45 |
|
46 |
# Command to run the Flask app
|
47 |
+
CMD ["python3", "main.py"]
|