Spaces:
Running
Running
Update
Browse files- Dockerfile +2 -2
Dockerfile
CHANGED
@@ -7,7 +7,7 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|
7 |
|
8 |
# Install apt dependencies
|
9 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
10 |
-
build-essential cmake \
|
11 |
libglib2.0-0 libgl1-mesa-glx libegl1-mesa ffmpeg \
|
12 |
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
13 |
|
@@ -18,7 +18,7 @@ ENV PATH="/opt/venv/bin:$PATH"
|
|
18 |
RUN echo "source /opt/venv/bin/activate" >> /root/.bashrc
|
19 |
|
20 |
# Install LeRobot
|
21 |
-
|
22 |
WORKDIR /lerobot
|
23 |
RUN pip install --upgrade --no-cache-dir pip
|
24 |
RUN pip install --no-cache-dir "." \
|
|
|
7 |
|
8 |
# Install apt dependencies
|
9 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
10 |
+
build-essential cmake git \
|
11 |
libglib2.0-0 libgl1-mesa-glx libegl1-mesa ffmpeg \
|
12 |
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
13 |
|
|
|
18 |
RUN echo "source /opt/venv/bin/activate" >> /root/.bashrc
|
19 |
|
20 |
# Install LeRobot
|
21 |
+
RUN git clone https://github.com/huggingface/lerobot.git /lerobot
|
22 |
WORKDIR /lerobot
|
23 |
RUN pip install --upgrade --no-cache-dir pip
|
24 |
RUN pip install --no-cache-dir "." \
|