Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- 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
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
|
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
|