Spaces:
Runtime error
Runtime error
Update Dockerfile
Browse files- Dockerfile +2 -0
Dockerfile
CHANGED
@@ -7,6 +7,8 @@ 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 |
COPY requirements.txt .
|
11 |
RUN pip install --no-cache-dir -r requirements.txt
|
12 |
COPY . .
|
|
|
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
|
14 |
COPY . .
|