Skip to content

Commit

Permalink
Hotfix, install colcon. Also set default robot base image to ubuntu22 (
Browse files Browse the repository at this point in the history
  • Loading branch information
andrewjong authored Jan 13, 2025
1 parent 89ae41f commit 69fee36
Show file tree
Hide file tree
Showing 2 changed files with 5 additions and 4 deletions.
2 changes: 1 addition & 1 deletion .env
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
PROJECT_NAME="airstack"
PROJECT_VERSION="1.0.0"
PROJECT_VERSION="1.0.1"
# can replace with your docker hub username
PROJECT_DOCKER_REGISTRY="airlab-storage.andrew.cmu.edu:5001/shared"
DEFAULT_ISAAC_SCENE="omniverse://airlab-storage.andrew.cmu.edu:8443/Projects/AirStack/fire_academy.scene.usd"
Expand Down
7 changes: 4 additions & 3 deletions robot/docker/Dockerfile.robot
Original file line number Diff line number Diff line change
@@ -1,6 +1,6 @@
# either ubuntu:22.04 or l4t
# either ubuntu:22.04 or l4t. ubuntu:22.04 is default
ARG BASE_IMAGE
FROM ${BASE_IMAGE}
FROM ${BASE_IMAGE:-ubuntu:22.04}

# from https://github.com/athackst/dockerfiles/blob/main/ros2/humble.Dockerfile
ENV DEBIAN_FRONTEND=noninteractive
Expand Down Expand Up @@ -76,7 +76,8 @@ RUN apt update -y && apt install -y \
ros-humble-topic-tools \
ros-humble-grid-map \
ros-humble-domain-bridge \
libcgal-dev
libcgal-dev \
python3-colcon-common-extensions
RUN /opt/ros/humble/lib/mavros/install_geographiclib_datasets.sh


Expand Down

0 comments on commit 69fee36

Please sign in to comment.