Skip to content
6 changes: 2 additions & 4 deletions docker/Dockerfile.curobo
Original file line number Diff line number Diff line change
Expand Up @@ -34,8 +34,6 @@ ENV DOCKER_USER_HOME=${DOCKER_USER_HOME_ARG}
ENV LANG=C.UTF-8
ENV DEBIAN_FRONTEND=noninteractive

USER root

# Install dependencies
RUN apt-get update && \
apt-get install -y --no-install-recommends \
Expand Down Expand Up @@ -169,8 +167,8 @@ RUN echo "export ISAACLAB_PATH=${ISAACLAB_PATH}" >> ${HOME}/.bashrc && \
echo "alias pip3='${ISAACLAB_PATH}/_isaac_sim/python.sh -m pip'" >> ${HOME}/.bashrc && \
echo "alias tensorboard='${ISAACLAB_PATH}/_isaac_sim/python.sh ${ISAACLAB_PATH}/_isaac_sim/tensorboard'" >> ${HOME}/.bashrc && \
echo "export TZ=$(date +%Z)" >> ${HOME}/.bashrc && \
echo "shopt -s histappend" >> /root/.bashrc && \
echo "PROMPT_COMMAND='history -a'" >> /root/.bashrc
echo "shopt -s histappend" >> ${HOME}/.bashrc && \
echo "PROMPT_COMMAND='history -a'" >> ${HOME}/.bashrc

# copy the rest of the files
COPY ../ ${ISAACLAB_PATH}/
Expand Down
Loading