ellaerez commited on
Commit
b8da3b4
·
verified ·
1 Parent(s): ee0e4b0

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +7 -6
Dockerfile CHANGED
@@ -10,6 +10,13 @@ RUN git clone https://github.com/ellazeldes/LoTHM
10
  RUN pip3 install gdown && \
11
  gdown --folder 1obshsRv7blb-3boef9o2mh6q4ROrEol3
12
 
 
 
 
 
 
 
 
13
  # Clone and install textlesslib
14
  RUN git clone https://github.com/facebookresearch/textlesslib && \
15
  pip3 install -e textlesslib
@@ -19,12 +26,6 @@ RUN git clone https://github.com/facebookresearch/fairseq && \
19
  pip3 install -e fairseq
20
 
21
 
22
- COPY ./requirements.txt /code/requirements.txt
23
-
24
-
25
- RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
26
-
27
-
28
  RUN apt-get update && \
29
  apt-get -y install sudo
30
 
 
10
  RUN pip3 install gdown && \
11
  gdown --folder 1obshsRv7blb-3boef9o2mh6q4ROrEol3
12
 
13
+
14
+ COPY ./requirements.txt /code/requirements.txt
15
+
16
+
17
+ RUN pip install --no-cache-dir --upgrade -r /code/requirements.txt
18
+
19
+
20
  # Clone and install textlesslib
21
  RUN git clone https://github.com/facebookresearch/textlesslib && \
22
  pip3 install -e textlesslib
 
26
  pip3 install -e fairseq
27
 
28
 
 
 
 
 
 
 
29
  RUN apt-get update && \
30
  apt-get -y install sudo
31