@@ -20,7 +20,7 @@ WORKDIR /autoware
20
20
21
21
# Set up base environment
22
22
RUN --mount=type=ssh \
23
- ./setup-dev-env.sh -y --module base --runtime openadk \
23
+ ./setup-dev-env.sh -y --module base --runtime openadkit \
24
24
&& pip uninstall -y ansible ansible-core \
25
25
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* "$HOME" /.cache \
26
26
&& echo "source /opt/ros/${ROS_DISTRO}/setup.bash" > /etc/bash.bashrc
@@ -72,7 +72,7 @@ ENV CXX="/usr/lib/ccache/g++"
72
72
# cspell: ignore libcu libnv
73
73
# Set up development environment
74
74
RUN --mount=type=ssh \
75
- ./setup-dev-env.sh -y --module all ${SETUP_ARGS} --no-cuda-drivers openadk \
75
+ ./setup-dev-env.sh -y --module all ${SETUP_ARGS} --no-cuda-drivers openadkit \
76
76
&& pip uninstall -y ansible ansible-core \
77
77
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* "$HOME" /.cache \
78
78
&& find / -name 'libcu*.a' -delete \
@@ -105,12 +105,12 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
105
105
106
106
# Install development tools and artifacts
107
107
RUN --mount=type=ssh \
108
- ./setup-dev-env.sh -y --module dev-tools openadk \
108
+ ./setup-dev-env.sh -y --module dev-tools openadkit \
109
109
&& pip uninstall -y ansible ansible-core \
110
110
&& apt-get autoremove -y && apt-get clean -y && rm -rf /var/lib/apt/lists/* "$HOME" /.cache
111
111
112
112
# Create entrypoint
113
- COPY docker/autoware-openadk/ etc/ros_entrypoint.sh /ros_entrypoint.sh
113
+ COPY docker/etc/ros_entrypoint.sh /ros_entrypoint.sh
114
114
RUN chmod +x /ros_entrypoint.sh
115
115
ENTRYPOINT ["/ros_entrypoint.sh" ]
116
116
CMD ["/bin/bash" ]
@@ -125,7 +125,7 @@ ARG SETUP_ARGS
125
125
COPY --from=src-imported /rosdep-exec-depend-packages.txt /tmp/rosdep-exec-depend-packages.txt
126
126
# hadolint ignore=SC2002
127
127
RUN --mount=type=ssh \
128
- ./setup-dev-env.sh -y --module all ${SETUP_ARGS} --no-cuda-drivers --runtime openadk \
128
+ ./setup-dev-env.sh -y --module all ${SETUP_ARGS} --no-cuda-drivers --runtime openadkit \
129
129
&& pip uninstall -y ansible ansible-core \
130
130
&& apt-get update \
131
131
&& cat /tmp/rosdep-exec-depend-packages.txt | xargs apt-get install -y --no-install-recommends \
@@ -143,11 +143,11 @@ RUN --mount=type=ssh \
143
143
COPY --from=prebuilt /autoware/install/ /autoware/install/
144
144
145
145
# Copy bash aliases
146
- COPY docker/autoware-openadk/ etc/.bash_aliases /root/.bash_aliases
146
+ COPY docker/etc/.bash_aliases /root/.bash_aliases
147
147
RUN echo "source /autoware/install/setup.bash" > /etc/bash.bashrc
148
148
149
149
# Create entrypoint
150
- COPY docker/autoware-openadk/ etc/ros_entrypoint.sh /ros_entrypoint.sh
150
+ COPY docker/etc/ros_entrypoint.sh /ros_entrypoint.sh
151
151
RUN chmod +x /ros_entrypoint.sh
152
152
ENTRYPOINT ["/ros_entrypoint.sh" ]
153
153
CMD ["bash" ]
0 commit comments