Spaces:
Running
Running
Update Dockerfile
Browse files- Dockerfile +1 -4
Dockerfile
CHANGED
|
@@ -5,14 +5,11 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
|
|
| 5 |
git \
|
| 6 |
&& rm -rf /var/lib/apt/lists/*
|
| 7 |
|
| 8 |
-
# Set working directory
|
| 9 |
-
WORKDIR /app
|
| 10 |
-
|
| 11 |
# Clone the repository with depth 1 (shallow clone)
|
| 12 |
RUN git clone --branch update_html_visualizer --depth 1 https://github.com/mishig25/lerobot.git /lerobot.
|
| 13 |
|
| 14 |
# Change to the HTML visualizer directory
|
| 15 |
-
WORKDIR /
|
| 16 |
|
| 17 |
# Install production dependencies only
|
| 18 |
RUN npm ci --production
|
|
|
|
| 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 --depth 1 https://github.com/mishig25/lerobot.git /lerobot.
|
| 10 |
|
| 11 |
# Change to the HTML visualizer directory
|
| 12 |
+
WORKDIR /lerobot/lerobot/html_dataset_visualizer
|
| 13 |
|
| 14 |
# Install production dependencies only
|
| 15 |
RUN npm ci --production
|