Skip to content
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

Extend template to install packages from lockfiles #667

Draft
wants to merge 3 commits into
base: master
Choose a base branch
from

Conversation

ruffsl
Copy link
Member

@ruffsl ruffsl commented Mar 21, 2023

@ruffsl ruffsl marked this pull request as draft March 21, 2023 20:25
@ruffsl
Copy link
Member Author

ruffsl commented Mar 21, 2023

Example changes here from upstream template changes:

Dockerfile

# install ros2 packages
- RUN apt-get update && apt-get install -y --no-install-recommends \
-    ros-rolling-ros-core=0.10.0-1* \
-    && rm -rf /var/lib/apt/lists/*
# copy ros packages
ARG TARGETARCH
COPY $TARGETARCH/ros2_packages.txt /opt/ros/

# install ros packages
RUN apt-get update \
    && xargs -a /opt/ros/ros2_packages.txt \
        apt-get install -y --no-install-recommends \
    && rm -rf /var/lib/apt/lists/*

amd64/ros2_packages.txt

ros-rolling-ros-core=0.10.0-1jammy.20230302.170232

arm64v8/ros2_packages.txt

ros-rolling-ros-core=0.10.0-1jammy.20230302.181653

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

None yet

1 participant