-
-
Notifications
You must be signed in to change notification settings - Fork 8
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add Dockerfile for moveit-ci-testing
- Loading branch information
Showing
8 changed files
with
37 additions
and
8 deletions.
There are no files selected for viewing
This file contains 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,16 @@ | ||
# moveit/moveit:jammy-ci-testing | ||
# Sets up a base image to use for running Continuous Integration | ||
|
||
ARG DEB_DISTRO=jammy | ||
FROM moveit/moveit:${DEB_DISTRO}-ci | ||
LABEL org.opencontainers.image.authors="Robert Haschke <[email protected]>" | ||
|
||
# Switch to ros-testing | ||
RUN . /etc/os-release && \ | ||
echo "deb [arch=$(dpkg --print-architecture) signed-by=/etc/apt/keyrings/ros-one-keyring.gpg] https://ros.packages.techfak.net ${VERSION_CODENAME}-testing main" | tee /etc/apt/sources.list.d/ros1.list && \ | ||
# Upgrade packages to ros-testing and clean apt-cache within one RUN command | ||
apt-get update && \ | ||
apt-get -qq -y dist-upgrade && \ | ||
# | ||
# Clear apt-cache to reduce image size | ||
rm -rf /var/lib/apt/lists/* |
This file contains 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 |
---|---|---|
@@ -1,8 +1,9 @@ | ||
# moveit/moveit:jammy-ci | ||
# Sets up a base image to use for running Continuous Integration on Travis | ||
# Sets up a base image to use for running Continuous Integration | ||
|
||
ARG DEB_DISTRO=jammy | ||
FROM ubiagni/ros:${DEB_DISTRO}-ros-base | ||
LABEL org.opencontainers.image.authors="Robert Haschke <[email protected]>" | ||
|
||
ENV TERM=xterm | ||
ENV IN_DOCKER=1 | ||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
ARG DEB_DISTRO=jammy | ||
FROM ubiagni/ros:${DEB_DISTRO}-ros-core | ||
LABEL org.opencontainers.image.authors="Robert Haschke <[email protected]>" | ||
|
||
# install bootstrap tools | ||
RUN apt-get update && apt-get install --no-install-recommends -y \ | ||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
ARG DEB_DISTRO=jammy | ||
FROM ubuntu:${DEB_DISTRO} | ||
LABEL org.opencontainers.image.authors="Robert Haschke <[email protected]>" | ||
|
||
# setup timezone | ||
RUN echo 'Etc/UTC' > /etc/timezone && \ | ||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
ARG DEB_DISTRO=jammy | ||
FROM ubiagni/ros:${DEB_DISTRO}-ros-desktop | ||
LABEL org.opencontainers.image.authors="Robert Haschke <[email protected]>" | ||
|
||
# install ros packages | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
ARG DEB_DISTRO=jammy | ||
FROM ubiagni/ros:${DEB_DISTRO}-ros-robot | ||
LABEL org.opencontainers.image.authors="Robert Haschke <[email protected]>" | ||
|
||
# install ros packages | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
|
This file contains 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 |
---|---|---|
@@ -1,5 +1,6 @@ | ||
ARG DEB_DISTRO=jammy | ||
FROM ubiagni/ros:${DEB_DISTRO}-ros-base | ||
LABEL org.opencontainers.image.authors="Robert Haschke <[email protected]>" | ||
|
||
# install ros packages | ||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
|
This file contains 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