use older pyyaml-include version
Browse files- Dockerfile +3 -3
Dockerfile
CHANGED
@@ -6,7 +6,7 @@ RUN apt-get -y update \
|
|
6 |
&& rm -rf /var/lib/apt/lists/*
|
7 |
|
8 |
RUN python3 -m pip install --upgrade pip \
|
9 |
-
&& pip install --no-cache-dir torch torchvision torchaudio pyyaml
|
10 |
|
11 |
RUN useradd -m -u 1000 user
|
12 |
|
@@ -21,9 +21,9 @@ COPY --chown=user . $HOME/app
|
|
21 |
|
22 |
RUN git clone --branch hf_demo https://github.com/TRI-ML/vlm-evaluation.git
|
23 |
|
24 |
-
RUN cd vlm-evaluation && pip3 install --no-cache-dir -e .
|
25 |
|
26 |
-
RUN pip install --no-cache-dir .
|
27 |
|
28 |
RUN pip list
|
29 |
|
|
|
6 |
&& rm -rf /var/lib/apt/lists/*
|
7 |
|
8 |
RUN python3 -m pip install --upgrade pip \
|
9 |
+
&& pip install --no-cache-dir torch torchvision torchaudio pyyaml-include==1.4.1
|
10 |
|
11 |
RUN useradd -m -u 1000 user
|
12 |
|
|
|
21 |
|
22 |
RUN git clone --branch hf_demo https://github.com/TRI-ML/vlm-evaluation.git
|
23 |
|
24 |
+
RUN cd vlm-evaluation && pip3 install -U --no-cache-dir -e .
|
25 |
|
26 |
+
RUN pip install -U --no-cache-dir .
|
27 |
|
28 |
RUN pip list
|
29 |
|