melromyeah commited on
Commit
8857d28
·
verified ·
1 Parent(s): 9384274

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -1
Dockerfile CHANGED
@@ -7,7 +7,16 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
7
  && rm -rf /var/lib/apt/lists/*
8
  RUN pip install --no-cache-dir pip==24.0
9
  RUN pip install --no-cache-dir gradio==4.31.5
10
- RUN pip install --no-cache-dir omegaconf==2.0.6 hydra-core==1.0.7 cython
 
 
 
 
 
 
 
 
 
11
  RUN pip install --no-cache-dir --no-deps git+https://github.com/pytorch/fairseq.git
12
  COPY requirements.txt .
13
  RUN pip install --no-cache-dir -r requirements.txt
 
7
  && rm -rf /var/lib/apt/lists/*
8
  RUN pip install --no-cache-dir pip==24.0
9
  RUN pip install --no-cache-dir gradio==4.31.5
10
+ RUN pip install --no-cache-dir \
11
+ omegaconf==2.0.6 \
12
+ hydra-core==1.0.7 \
13
+ cython \
14
+ bitarray \
15
+ regex \
16
+ tqdm \
17
+ cffi \
18
+ sacrebleu \
19
+ scikit-learn
20
  RUN pip install --no-cache-dir --no-deps git+https://github.com/pytorch/fairseq.git
21
  COPY requirements.txt .
22
  RUN pip install --no-cache-dir -r requirements.txt