forked from osrf/vrx
-
Notifications
You must be signed in to change notification settings - Fork 0
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Add initial (not functional) Dockerfile and clean up github workflows
Signed-off-by: Christopher Strøm <[email protected]>
- Loading branch information
Christopher Strøm
committed
Jul 27, 2024
1 parent
7b59f33
commit 01731b3
Showing
4 changed files
with
11 additions
and
183 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
This file was deleted.
Oops, something went wrong.
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,11 @@ | ||
FROM ros:humble_perception | ||
|
||
WORKDIR /ros_ws | ||
|
||
RUN mkdir -p /ros_ws/src | ||
|
||
COPY . /ros_ws/src | ||
|
||
RUN source /opt/ros/humble/setup.bash && cd /ros_ws && colcon build --merge-install | ||
|
||
ENTRYPOINT["/bin/bash", "-c", "/ros_ws/src/vortex_sim_interface/run_sim.sh"] |