Spaces:
Sleeping
Sleeping
SemSorter commited on
Commit ·
93d5b3b
1
Parent(s): e34e88e
Install git and clone mujoco_menagerie in Dockerfile
Browse files- Dockerfile +4 -0
Dockerfile
CHANGED
|
@@ -10,6 +10,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 10 |
libglx0 \
|
| 11 |
libx11-6 \
|
| 12 |
wget \
|
|
|
|
| 13 |
&& rm -rf /var/lib/apt/lists/*
|
| 14 |
|
| 15 |
# ── Create working directory ──────────────────────────────────────────────────
|
|
@@ -22,6 +23,9 @@ RUN pip install --no-cache-dir -r requirements-server.txt
|
|
| 22 |
# ── Copy project ──────────────────────────────────────────────────────────────
|
| 23 |
COPY . .
|
| 24 |
|
|
|
|
|
|
|
|
|
|
| 25 |
# ── MuJoCo environment ────────────────────────────────────────────────────────
|
| 26 |
ENV MUJOCO_GL=egl
|
| 27 |
ENV PYOPENGL_PLATFORM=egl
|
|
|
|
| 10 |
libglx0 \
|
| 11 |
libx11-6 \
|
| 12 |
wget \
|
| 13 |
+
git \
|
| 14 |
&& rm -rf /var/lib/apt/lists/*
|
| 15 |
|
| 16 |
# ── Create working directory ──────────────────────────────────────────────────
|
|
|
|
| 23 |
# ── Copy project ──────────────────────────────────────────────────────────────
|
| 24 |
COPY . .
|
| 25 |
|
| 26 |
+
# ── Download MuJoCo Menagerie (Panda arm) ─────────────────────────────────────
|
| 27 |
+
RUN git clone --depth 1 https://github.com/google-deepmind/mujoco_menagerie.git
|
| 28 |
+
|
| 29 |
# ── MuJoCo environment ────────────────────────────────────────────────────────
|
| 30 |
ENV MUJOCO_GL=egl
|
| 31 |
ENV PYOPENGL_PLATFORM=egl
|