mishig HF Staff commited on
Commit
6a8d156
·
verified ·
1 Parent(s): bc3bc3f

Update Dockerfile

Browse files
Files changed (1) hide show
  1. Dockerfile +10 -3
Dockerfile CHANGED
@@ -2,12 +2,19 @@ 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.
11
 
12
  # Change to the HTML visualizer directory
13
  WORKDIR /lerobot/lerobot/html_dataset_visualizer
 
2
 
3
  # Install apt dependencies
4
  RUN apt-get update && apt-get install -y --no-install-recommends \
5
+ build-essential \
6
+ cmake \
7
+ git \
8
+ wget \
9
+ ca-certificates \
10
+ libglib2.0-0 \
11
+ libgl1-mesa-glx \
12
+ libegl1-mesa \
13
+ ffmpeg \
14
  && apt-get clean && rm -rf /var/lib/apt/lists/*
15
 
16
  # Clone the repository with depth 1 (shallow clone)
17
+ RUN git clone --depth 1 --branch update_html_visualizer https://github.com/mishig25/lerobot.git /lerobot
18
 
19
  # Change to the HTML visualizer directory
20
  WORKDIR /lerobot/lerobot/html_dataset_visualizer