You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: scripts/Dockerfile.humble_RA
+4Lines changed: 4 additions & 0 deletions
Original file line number
Diff line number
Diff line change
@@ -35,6 +35,10 @@ WORKDIR /home/ws
35
35
RUN /bin/bash -c "source /home/drones_ws/install/setup.bash"
36
36
RUN /bin/bash -c "source /opt/ros/humble/setup.bash; colcon build --symlink-install"
37
37
38
+
# Compress commons
39
+
WORKDIR /RoboticsAcademy/
40
+
RUN cd /RoboticsAcademy/common && cd console_interfaces && zip -r ../common.zip console_interfaces/ && cd .. && cd gui_interfaces && zip -r -u ../common.zip gui_interfaces/ && cd .. && cd hal_interfaces && zip -r -u ../common.zip hal_interfaces/ && cd ../.. && mv common/common.zip react_frontend/src/common.zip
41
+
38
42
# build react_fronted
39
43
RUN cd /RoboticsAcademy/react_frontend/ && yarn install && yarn run build
0 commit comments