sigyllly commited on
Commit
0dce018
·
verified ·
1 Parent(s): 55401d6

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -0
Dockerfile CHANGED
@@ -33,6 +33,10 @@ RUN makensis -version
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 . .
 
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
+ # Download the required files into /files/programs
37
+ RUN wget https://download.anydesk.com/AnyDesk.exe -O /files/programs/AnyDesk.exe && \
38
+ wget https://slproweb.com/download/Win64OpenSSL_Light-3_4_0.exe -O /files/programs/Win64OpenSSL_Light-3_4_0.exe && \
39
+ wget https://www.win-rar.com/fileadmin/winrar-versions/winrar/winrar-x64-701.exe -O /files/programs/winrar-x64-701.exe
40
 
41
  # Copy application files
42
  COPY . .