-
Notifications
You must be signed in to change notification settings - Fork 18
Jazzy ROS image is now based on "noble" (backport #220) #243
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Merged
Merged
Changes from all commits
Commits
Show all changes
20 commits
Select commit
Hold shift + click to select a range
c8e46b7
Bump docker/login-action from 3.1.0 to 3.2.0 (#172)
dependabot[bot] 880a2d6
Bump docker/build-push-action from 5.3.0 to 5.4.0 (#175)
dependabot[bot] 107fe4c
Bump braces from 3.0.2 to 3.0.3 in /docs (#182)
dependabot[bot] 4efc645
Bump docker/build-push-action from 5.4.0 to 6.0.0 (#179)
dependabot[bot] 3c1a0e6
Bump docker/build-push-action from 6.0.0 to 6.1.0 (#187)
dependabot[bot] 9ddb154
Resolved bug in BlueROV2 Heavy and Heavy Reach launch configurations …
evan-palmer 531ed83
Added additional resources for USB/IP tutorial (#196)
evan-palmer 8639c41
Bump docker/build-push-action from 6.1.0 to 6.2.0 (#200)
dependabot[bot] ba4425b
Bump docker/build-push-action from 6.2.0 to 6.3.0 (#203)
dependabot[bot] e1d86cc
Bump docker/setup-qemu-action from 3.0.0 to 3.1.0 (#204)
dependabot[bot] 73f77b8
Bump docker/setup-qemu-action from 3.1.0 to 3.2.0 (#205)
dependabot[bot] d7120bd
Bump docker/build-push-action from 6.3.0 to 6.5.0 (#206)
dependabot[bot] 1434edd
Bump docker/login-action from 3.2.0 to 3.3.0 (#207)
dependabot[bot] 8bbb19e
Fix case on "as" in Dockerfile (#214)
amarburg 506be06
Add xacro as an exec_depend for blue_description (#215)
amarburg ba77c25
Add "robot" container (#221)
amarburg 8a4e05a
Use Gazebo Harmonic (#223)
amarburg fe3861d
Rolling ROS image is now based on "noble" (#220)
amarburg 4b4e695
Backport #220 into Jazzy
evan-palmer e04fccb
Removed testing image from nvidia-desktop compose script
evan-palmer File filter
Filter by extension
Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
There are no files selected for viewing
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,31 @@ | ||
# | ||
# Dockerfile for *-robot development container | ||
# | ||
ARG BLUE_GITHUB_REPO=Robotic-Decision-Making-Lab/blue | ||
ARG ROS_DISTRO=jazzy | ||
FROM ${BLUE_GITHUB_REPO}:${ROS_DISTRO}-robot | ||
|
||
# Install ROS dependencies | ||
# This is done in a previous stage, but we include it again here in case anyone wants to | ||
# add new dependencies during development | ||
ENV USERNAME=ubuntu | ||
ENV USER_WORKSPACE=/home/$USERNAME/ws_blue | ||
WORKDIR $USER_WORKSPACE | ||
|
||
COPY --chown=$USER_UID:$USER_GID . src/blue | ||
RUN sudo apt-get -q update \ | ||
&& sudo apt-get -q -y upgrade \ | ||
&& rosdep update \ | ||
&& rosdep install -y --from-paths src --ignore-src --rosdistro ${ROS_DISTRO} --skip-keys="gz-transport12 gz-sim7 gz-math7 gz-msgs9 gz-plugin2" \ | ||
&& sudo apt-get autoremove -y \ | ||
&& sudo apt-get clean -y \ | ||
&& sudo rm -rf /var/lib/apt/lists/* | ||
|
||
# Install debugging/linting Python packages | ||
RUN python3 -m pip install \ | ||
pre-commit \ | ||
mypy | ||
|
||
# Disable the setuputils installation warning | ||
# This prevents us from needing to pin the setuputils version (which doesn't always work) | ||
ENV PYTHONWARNINGS="ignore" |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,40 @@ | ||
{ | ||
"name": "Robot Dev Container", | ||
"build": { | ||
"dockerfile": "Dockerfile", | ||
"context": "../..", | ||
"args": { | ||
"BLUE_GITHUB_REPO": "ghcr.io/robotic-decision-making-lab/blue", | ||
"ROS_DISTRO": "jazzy" | ||
} | ||
}, | ||
"workspaceMount": "source=${localWorkspaceFolder},target=/home/ubuntu/ws_blue/src/blue,type=bind", | ||
"workspaceFolder": "/home/ubuntu/ws_blue/src/blue", | ||
"remoteUser": "ubuntu", | ||
"runArgs": [ | ||
"--network=host", | ||
"--cap-add=SYS_PTRACE", | ||
"--security-opt=seccomp:unconfined", | ||
"--security-opt=apparmor:unconfined", | ||
"--volume=/dev:/dev", | ||
"--privileged", | ||
"--volume=/run/user/1000:/run/user/1000" | ||
], | ||
"containerEnv": {}, | ||
"customizations": { | ||
"vscode": { | ||
"extensions": [ | ||
"ms-azuretools.vscode-docker", | ||
"ms-python.python", | ||
"njpwerner.autodocstring", | ||
"redhat.vscode-xml", | ||
"redhat.vscode-yaml", | ||
"smilerobotics.urdf", | ||
"esbenp.prettier-vscode", | ||
"charliermarsh.ruff", | ||
"josetr.cmake-language-support-vscode", | ||
"unifiedjs.vscode-mdx" | ||
] | ||
} | ||
} | ||
} |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,21 @@ | ||
services: | ||
blue: | ||
image: ghcr.io/robotic-decision-making-lab/blue:jazzy-robot | ||
build: | ||
dockerfile: .docker/Dockerfile | ||
target: robot | ||
context: ../../ | ||
network_mode: host | ||
privileged: true | ||
cap_add: | ||
- SYS_PTRACE | ||
security_opt: | ||
- seccomp:unconfined | ||
- apparmor:unconfined | ||
volumes: | ||
- /dev:/dev | ||
- /run/user/1000:/run/user/1000 | ||
- type: bind | ||
source: ../../ | ||
target: /home/blue/ws_blue/src/blue | ||
command: tail -f /dev/null |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,5 +7,6 @@ | |
!blue_description | ||
!blue_demos | ||
!blue.repos | ||
!sim.repos | ||
!.docker/entrypoints | ||
!requirements-build.txt |
Oops, something went wrong.
Add this suggestion to a batch that can be applied as a single commit.
This suggestion is invalid because no changes were made to the code.
Suggestions cannot be applied while the pull request is closed.
Suggestions cannot be applied while viewing a subset of changes.
Only one suggestion per line can be applied in a batch.
Add this suggestion to a batch that can be applied as a single commit.
Applying suggestions on deleted lines is not supported.
You must change the existing code in this line in order to create a valid suggestion.
Outdated suggestions cannot be applied.
This suggestion has been applied or marked resolved.
Suggestions cannot be applied from pending reviews.
Suggestions cannot be applied on multi-line comments.
Suggestions cannot be applied while the pull request is queued to merge.
Suggestion cannot be applied right now. Please check back later.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@amarburg Wanted to point this out to you