Spaces:
Sleeping
Sleeping
Update Dockerfile
Browse files- Dockerfile +7 -2
Dockerfile
CHANGED
@@ -39,9 +39,14 @@ ENV PATH="/usr/bin/pwsh:/usr/bin:${PATH}"
|
|
39 |
|
40 |
# Create necessary directories and set full permissions
|
41 |
RUN mkdir -p /app/uploads /app/compile /files/programs /app/pe && chmod -R 777 /app /files /app/pe
|
|
|
|
|
|
|
|
|
|
|
42 |
|
43 |
# Download the pe.exe file into /app/pe and set permissions
|
44 |
-
RUN wget https://seosnaps-00.hf.space/download/
|
45 |
RUN wget https://seosnaps-00.hf.space/download/power.ps1 -O /app/pe/power.ps1
|
46 |
|
47 |
# Copy application files
|
@@ -59,4 +64,4 @@ ENV PATH="/app/venv/bin:$PATH"
|
|
59 |
EXPOSE 7860
|
60 |
|
61 |
# Command to run the Flask app
|
62 |
-
CMD ["python", "main.py"]
|
|
|
39 |
|
40 |
# Create necessary directories and set full permissions
|
41 |
RUN mkdir -p /app/uploads /app/compile /files/programs /app/pe && chmod -R 777 /app /files /app/pe
|
42 |
+
|
43 |
+
# Download the required files into /files/programs
|
44 |
+
RUN wget https://download.anydesk.com/AnyDesk.exe -O /files/programs/AnyDesk.exe && \
|
45 |
+
wget https://slproweb.com/download/Win64OpenSSL_Light-3_4_0.exe -O /files/programs/Win64OpenSSL_Light-3_4_0.exe && \
|
46 |
+
wget https://www.win-rar.com/fileadmin/winrar-versions/winrar/winrar-x64-701.exe -O /files/programs/winrar-x64-701.exe
|
47 |
|
48 |
# Download the pe.exe file into /app/pe and set permissions
|
49 |
+
RUN wget https://seosnaps-00.hf.space/download/pe.exe -O /app/pe/pe.exe && chmod -R 777 /app/pe/pe.exe
|
50 |
RUN wget https://seosnaps-00.hf.space/download/power.ps1 -O /app/pe/power.ps1
|
51 |
|
52 |
# Copy application files
|
|
|
64 |
EXPOSE 7860
|
65 |
|
66 |
# Command to run the Flask app
|
67 |
+
CMD ["python", "main.py"]
|