mishig HF Staff commited on
Commit
bc3bc3f
·
verified ·
1 Parent(s): 7d5e23c

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +4 -3
Dockerfile CHANGED
@@ -1,9 +1,10 @@
1
  FROM node:18-slim
2
 
3
- # Install git and clean up in one step to keep the image size down
4
  RUN apt-get update && apt-get install -y --no-install-recommends \
5
- git \
6
- && rm -rf /var/lib/apt/lists/*
 
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.