Skip to content

Commit

Permalink
Merge pull request #778 from StanfordVL/docker-400
Browse files Browse the repository at this point in the history
Update Docker images to Isaac Sim 4.0.0
  • Loading branch information
cgokmen authored Jul 9, 2024
2 parents ca2632b + 52bb0fe commit 0f98738
Show file tree
Hide file tree
Showing 7 changed files with 651 additions and 24 deletions.
2 changes: 1 addition & 1 deletion .github/workflows/tests.yml
Original file line number Diff line number Diff line change
Expand Up @@ -56,7 +56,7 @@ jobs:

- name: Run tests
working-directory: omnigibson-src
run: pytest tests/${{ matrix.test_file }}.py --junitxml=${{ matrix.test_file }}.xml && cp ${{ matrix.test_file }}.xml ${GITHUB_WORKSPACE}/
run: pytest -s tests/${{ matrix.test_file }}.py --junitxml=${{ matrix.test_file }}.xml && cp ${{ matrix.test_file }}.xml ${GITHUB_WORKSPACE}/

- name: Deploy artifact
uses: actions/upload-artifact@v3
Expand Down
5 changes: 0 additions & 5 deletions docker/build_docker.sh
Original file line number Diff line number Diff line change
@@ -1,11 +1,6 @@
#!/usr/bin/env bash
set -e -o pipefail

docker build \
-t stanfordvl/omnigibson-dev:latest \
-f docker/dev.Dockerfile \
.

docker build \
-t stanfordvl/omnigibson:latest \
-t stanfordvl/omnigibson:$(sed -ne "s/.*version= *['\"]\([^'\"]*\)['\"] *.*/\1/p" setup.py) \
Expand Down
2 changes: 1 addition & 1 deletion docker/gh-actions/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM stanfordvl/omnigibson-dev:og-develop
FROM stanfordvl/omnigibson:og-develop

ARG DUMB_INIT_VERSION="1.2.2"
ARG GIT_CORE_PPA_KEY="A1715D88E1DF1F24"
Expand Down
5 changes: 1 addition & 4 deletions docker/prod.Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM nvcr.io/nvidia/isaac-sim:2023.1.1
FROM nvcr.io/nvidia/isaac-sim:4.0.0

# Set up all the prerequisites.
RUN apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \
Expand All @@ -10,9 +10,6 @@ RUN rm -rf /isaac-sim/exts/omni.isaac.ml_archive/pip_prebundle/gym*
RUN rm -rf /isaac-sim/kit/extscore/omni.kit.pip_archive/pip_prebundle/numpy*
RUN /isaac-sim/python.sh -m pip install click~=8.1.3

# Disable the livestream extension getting launched by default in Isaac Sim 2023.1.1
RUN sed -i 's/\"omni.kit.livestream.native.*//g' /isaac-sim/apps/omni.isaac.sim.python.kit

# Mount the data directory
VOLUME ["/data"]
ENV OMNIGIBSON_DATASET_PATH /data/og_dataset
Expand Down
Loading

0 comments on commit 0f98738

Please sign in to comment.