teamx-cloner commited on
Commit
6793f37
·
1 Parent(s): 7fca5e0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -0
Dockerfile CHANGED
@@ -13,6 +13,16 @@ COPY installer.sh .
13
 
14
  RUN bash installer.sh
15
 
 
 
 
 
 
 
 
 
 
 
16
  # changing workdir
17
  WORKDIR "/root/TeamUltroid"
18
 
 
13
 
14
  RUN bash installer.sh
15
 
16
+ # the basic requirements.
17
+ RUN apt-get install -y ffmpeg python3-pip curl
18
+ RUN python3 -m pip install -U pip
19
+
20
+ # install nodejs.
21
+ RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash -
22
+ RUN apt-get install -y nodejs
23
+
24
+ COPY . .
25
+
26
  # changing workdir
27
  WORKDIR "/root/TeamUltroid"
28