try latest
Browse files- Dockerfile +6 -3
Dockerfile
CHANGED
|
@@ -6,7 +6,8 @@ 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
|
|
|
|
| 10 |
|
| 11 |
RUN useradd -m -u 1000 user
|
| 12 |
|
|
@@ -21,9 +22,11 @@ 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 -U --no-cache-dir -e .
|
|
|
|
| 25 |
|
| 26 |
-
RUN pip install
|
|
|
|
| 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
|
| 10 |
+
# pyyaml-include==1.4.1
|
| 11 |
|
| 12 |
RUN useradd -m -u 1000 user
|
| 13 |
|
|
|
|
| 22 |
|
| 23 |
RUN git clone --branch hf_demo https://github.com/TRI-ML/vlm-evaluation.git
|
| 24 |
|
| 25 |
+
# RUN cd vlm-evaluation && pip3 install -U --no-cache-dir -e .
|
| 26 |
+
RUN cd vlm-evaluation && pip3 install --no-cache-dir -e .
|
| 27 |
|
| 28 |
+
RUN pip install --no-cache-dir .
|
| 29 |
+
# RUN pip install -U --no-cache-dir .
|
| 30 |
|
| 31 |
RUN pip list
|
| 32 |
|