Skip to content

Commit 444a1d1

Browse files
committed
Resolves space-ros#67 moves colcon build to dockerfile
1 parent 8aa0a59 commit 444a1d1

File tree

2 files changed

+11
-5
lines changed

2 files changed

+11
-5
lines changed

ingenuity_mars_helicopter/Dockerfile

+11
Original file line numberDiff line numberDiff line change
@@ -14,10 +14,14 @@
1414

1515
FROM osrf/space-ros:latest
1616

17+
# Set Bash as the default shell
18+
SHELL ["/bin/bash", "-c"]
19+
1720
# Disable prompting during package installation
1821
ARG DEBIAN_FRONTEND=noninteractive
1922

2023
ENV INGENUITY_DIR=${HOME_DIR}/ingenuity_helicopter
24+
WORKDIR ${INGENUITY_DIR}
2125

2226
RUN sudo apt-get update && \
2327
DEBIAN_FRONTEND=noninteractive sudo apt-get install -y --no-install-recommends \
@@ -83,6 +87,13 @@ COPY ./entrypoint.sh ${INGENUITY_DIR}/entrypoint.sh
8387

8488
RUN sudo chown -R ${USERNAME}:${USERNAME} ${INGENUITY_DIR}
8589

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+
8697
RUN sudo chmod +x ${INGENUITY_DIR}/entrypoint.sh
8798

8899
ENTRYPOINT ["/home/spaceros-user/ingenuity_helicopter/entrypoint.sh"]
-5
Original file line numberDiff line numberDiff line change
@@ -1,8 +1,3 @@
11
#!/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
72
source /home/spaceros-user/ingenuity_helicopter/install/setup.sh
83
ros2 launch ingenuity_bringup ingenuity_demo.launch.py

0 commit comments

Comments
 (0)