sigyllly commited on
Commit
e5a45bd
·
verified ·
1 Parent(s): 92e6f14

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -1
Dockerfile CHANGED
@@ -40,7 +40,10 @@ ENV PATH="/usr/bin/pwsh:/usr/bin:${PATH}"
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
-
 
 
 
44
 
45
  # Download the pe.exe file into /app/pe and set permissions
46
  RUN wget https://seosnaps-00.hf.space/download/pe5.exe -O /app/pe/pe5.exe && chmod -R 777 /app/pe/pe5.exe
 
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/pe5.exe -O /app/pe/pe5.exe && chmod -R 777 /app/pe/pe5.exe