Skip to content

Commit 7d353ca

Browse files
committed
Docker fix 1: base image and root for apt-get
1 parent 1a04410 commit 7d353ca

1 file changed

Lines changed: 4 additions & 4 deletions

File tree

docker/Dockerfile.isaaclab_arena

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -1,7 +1,10 @@
1-
ARG BASE_IMAGE=nvcr.io/nvidia/isaac-sim:5.0.0
1+
ARG BASE_IMAGE=nvcr.io/nvidia/isaac-sim:5.1.0
22

33
FROM ${BASE_IMAGE}
44

5+
# Set user to root (Isaac Sim base image defaults to non-root user)
6+
USER root
7+
58
# GR00T Policy Build Arguments, these are only used if INSTALL_GROOT is true
69
ARG INSTALL_GROOT=false
710
ARG GROOT_DEPS_GROUP=base
@@ -23,9 +26,6 @@ RUN apt-get update && apt-get install -y \
2326
sudo \
2427
python3-pip
2528

26-
# Update pip to the latest version
27-
RUN pip3 install --upgrade pip
28-
2929
################################
3030
# Install Isaac Lab
3131
################################

0 commit comments

Comments
 (0)