Update dev docker build
This commit is contained in:
parent
47de07658c
commit
d3ccc9d963
|
@ -7,6 +7,8 @@ ARG DEBIAN_FRONTEND=noninteractive
|
|||
# Install apt dependencies
|
||||
RUN apt-get update && apt-get install -y --no-install-recommends \
|
||||
build-essential cmake \
|
||||
git git-lfs openssh-client \
|
||||
nano, vim \
|
||||
libglib2.0-0 libgl1-mesa-glx libegl1-mesa \
|
||||
python${PYTHON_VERSION} python${PYTHON_VERSION}-venv \
|
||||
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
||||
|
@ -18,7 +20,9 @@ ENV PATH="/opt/venv/bin:$PATH"
|
|||
RUN echo "source /opt/venv/bin/activate" >> /root/.bashrc
|
||||
|
||||
# Install LeRobot
|
||||
COPY . /lerobot
|
||||
RUN git lfs install
|
||||
# RUN git clone https://github.com/huggingface/lerobot.git
|
||||
RUN git clone git@github.com:huggingface/lerobot.git
|
||||
WORKDIR /lerobot
|
||||
RUN pip install --upgrade --no-cache-dir pip
|
||||
RUN pip install --no-cache-dir ".[test, aloha, xarm, pusht]"
|
||||
|
|
Loading…
Reference in New Issue