-
Notifications
You must be signed in to change notification settings - Fork 4
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
f93d99a
commit 76700bb
Showing
2 changed files
with
18 additions
and
3 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
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 @@ | ||
FROM ros:humble-ros-base | ||
|
||
# Add ornis user | ||
RUN useradd -ms /bin/bash ornis | ||
WORKDIR /home/ornis | ||
|
||
RUN apt-get update \ | ||
&& apt-get upgrade -y \ | ||
&& apt-get clean | ||
|
||
# install ORNIS deps | ||
RUN apt-get install -y build-essential cmake doctest-dev libavdevice-dev libdeflate-dev libgpm-dev \ | ||
libncurses-dev libqrcodegen-dev libswscale-dev libunistring-dev pandoc pkg-config \ | ||
ros-humble-rmw-fastrtps-dynamic-cpp git | ||
|
||
user ornis |