Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +4 -3
Dockerfile
CHANGED
@@ -1,9 +1,10 @@
|
|
1 |
FROM node:18-slim
|
2 |
|
3 |
-
# Install
|
4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
5 |
-
git \
|
6 |
-
|
|
|
7 |
|
8 |
# Clone the repository with depth 1 (shallow clone)
|
9 |
RUN git clone --branch update_html_visualizer https://github.com/mishig25/lerobot.git /lerobot.
|
|
|
1 |
FROM node:18-slim
|
2 |
|
3 |
+
# Install apt dependencies
|
4 |
RUN apt-get update && apt-get install -y --no-install-recommends \
|
5 |
+
build-essential cmake git wget \
|
6 |
+
libglib2.0-0 libgl1-mesa-glx libegl1-mesa ffmpeg \
|
7 |
+
&& apt-get clean && rm -rf /var/lib/apt/lists/*
|
8 |
|
9 |
# Clone the repository with depth 1 (shallow clone)
|
10 |
RUN git clone --branch update_html_visualizer https://github.com/mishig25/lerobot.git /lerobot.
|