Skip to content

Commit

Permalink
chore(docker): remove /autoware/log after colcon build (#5329)
Browse files Browse the repository at this point in the history
  • Loading branch information
youtalk authored Oct 14, 2024
1 parent ac59d90 commit 2ab4f1c
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions docker/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -223,7 +223,7 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
--install-base /opt/autoware \
--mixin release compile-commands ccache \
&& du -sh ${CCACHE_DIR} && ccache -s \
&& rm -rf /autoware/build
&& rm -rf /autoware/build /autoware/log

ENTRYPOINT ["/ros_entrypoint.sh"]
CMD ["/bin/bash"]
Expand Down Expand Up @@ -255,7 +255,7 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
--install-base /opt/autoware \
--mixin release compile-commands ccache \
&& du -sh ${CCACHE_DIR} && ccache -s \
&& rm -rf /autoware/build
&& rm -rf /autoware/build /autoware/log

ENTRYPOINT ["/ros_entrypoint.sh"]
CMD ["/bin/bash"]
Expand Down Expand Up @@ -287,7 +287,7 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
--install-base /opt/autoware \
--mixin release compile-commands ccache \
&& du -sh ${CCACHE_DIR} && ccache -s \
&& rm -rf /autoware/build
&& rm -rf /autoware/build /autoware/log

ENTRYPOINT ["/ros_entrypoint.sh"]
CMD ["/bin/bash"]
Expand Down Expand Up @@ -319,7 +319,7 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
--install-base /opt/autoware \
--mixin release compile-commands ccache \
&& du -sh ${CCACHE_DIR} && ccache -s \
&& rm -rf /autoware/build
&& rm -rf /autoware/build /autoware/log

FROM universe-common-devel AS universe-planning-control-devel
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
Expand Down Expand Up @@ -353,7 +353,7 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
--install-base /opt/autoware \
--mixin release compile-commands ccache \
&& du -sh ${CCACHE_DIR} && ccache -s \
&& rm -rf /autoware/build
&& rm -rf /autoware/build /autoware/log

ENTRYPOINT ["/ros_entrypoint.sh"]
CMD ["/bin/bash"]
Expand Down Expand Up @@ -387,7 +387,7 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
--install-base /opt/autoware \
--mixin release compile-commands ccache \
&& du -sh ${CCACHE_DIR} && ccache -s \
&& rm -rf /autoware/build
&& rm -rf /autoware/build /autoware/log

ENTRYPOINT ["/ros_entrypoint.sh"]
CMD ["/bin/bash"]
Expand Down Expand Up @@ -430,7 +430,7 @@ RUN --mount=type=cache,target=${CCACHE_DIR} \
--install-base /opt/autoware \
--mixin release compile-commands ccache \
&& du -sh ${CCACHE_DIR} && ccache -s \
&& rm -rf /autoware/build
&& rm -rf /autoware/build /autoware/log

ENTRYPOINT ["/ros_entrypoint.sh"]
CMD ["/bin/bash"]
Expand Down

0 comments on commit 2ab4f1c

Please sign in to comment.