File tree 2 files changed +11
-5
lines changed
ingenuity_mars_helicopter
2 files changed +11
-5
lines changed Original file line number Diff line number Diff line change 14
14
15
15
FROM osrf/space-ros:latest
16
16
17
+ # Set Bash as the default shell
18
+ SHELL ["/bin/bash" , "-c" ]
19
+
17
20
# Disable prompting during package installation
18
21
ARG DEBIAN_FRONTEND=noninteractive
19
22
20
23
ENV INGENUITY_DIR=${HOME_DIR}/ingenuity_helicopter
24
+ WORKDIR ${INGENUITY_DIR}
21
25
22
26
RUN sudo apt-get update && \
23
27
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y --no-install-recommends \
@@ -83,6 +87,13 @@ COPY ./entrypoint.sh ${INGENUITY_DIR}/entrypoint.sh
83
87
84
88
RUN sudo chown -R ${USERNAME}:${USERNAME} ${INGENUITY_DIR}
85
89
90
+ RUN export RMW_IMPLEMENTATION=rmw_cyclonedds_cpp && \
91
+ source /home/spaceros-user/spaceros/install/setup.bash && \
92
+ source /opt/ros/humble/setup.bash && \
93
+ cd /home/spaceros-user/ingenuity_helicopter && \
94
+ colcon build --packages-select helicopter_flight_control helicopter_flight_simulation ingenuity_description ingenuity_bringup
95
+
96
+
86
97
RUN sudo chmod +x ${INGENUITY_DIR}/entrypoint.sh
87
98
88
99
ENTRYPOINT ["/home/spaceros-user/ingenuity_helicopter/entrypoint.sh" ]
Original file line number Diff line number Diff line change 1
1
#! /bin/bash
2
- sudo chown -R ${USERNAME} :${USERNAME} /home/spaceros-user/ingenuity_helicopter
3
- source /home/spaceros-user/spaceros/install/setup.sh
4
- source /opt/ros/humble/setup.sh
5
- cd /home/spaceros-user/ingenuity_helicopter
6
- colcon build --packages-select helicopter_flight_control helicopter_flight_simulation ingenuity_description ingenuity_bringup
7
2
source /home/spaceros-user/ingenuity_helicopter/install/setup.sh
8
3
ros2 launch ingenuity_bringup ingenuity_demo.launch.py
You can’t perform that action at this time.
0 commit comments