This repository has been archived by the owner on Apr 12, 2024. It is now read-only.
-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
1 parent
fbe8c64
commit ace1a14
Showing
9 changed files
with
161 additions
and
84 deletions.
There are no files selected for viewing
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,5 +1,10 @@ | ||
# ROS build directories | ||
build/ | ||
devel/ | ||
|
||
# AMP-CLI files | ||
__pycache__/ | ||
AMP_CLI.egg-info/ | ||
|
||
# Catkin ignore files | ||
CATKIN_IGNORE |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
FROM ros:noetic-ros-base | ||
|
||
RUN apt-get update && apt-get install -y --no-install-recommends \ | ||
ros-noetic-desktop \ | ||
&& rm -rf /var/lib/apt/lists/* |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,18 @@ | ||
FROM amp-devel:noetic-desktop | ||
SHELL ["/bin/bash", "-c"] | ||
WORKDIR /amp_ws | ||
|
||
RUN apt-get update && apt-get install -q -y --no-install-recommends \ | ||
tmux \ | ||
curl \ | ||
wget \ | ||
vim \ | ||
libgl1-mesa-glx \ | ||
libgl1-mesa-dri \ | ||
mesa-utils \ | ||
unzip \ | ||
&& rm -rf /var/lib/apt/list/* \ | ||
&& rosdep update | ||
|
||
ENTRYPOINT ["/ros_entrypoint.sh"] | ||
CMD ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,9 +1,14 @@ | ||
FROM amp-base:default | ||
FROM amp-devel:frame-desktop | ||
SHELL ["/bin/bash", "-c"] | ||
WORKDIR /amp_ws | ||
|
||
COPY . . | ||
COPY src ./src | ||
COPY .catkin_workspace . | ||
|
||
RUN . /opt/ros/noetic/setup.bash && \ | ||
rosdep install --from-paths src -r -y && \ | ||
catkin_make && echo "source /amp_ws/devel/setup.bash" >> ~/.bashrc | ||
catkin_make | ||
RUN echo "source /amp_ws/devel/setup.bash" >> ~/.bashrc | ||
|
||
ENTRYPOINT ["/ros_entrypoint.sh"] | ||
CMD ["bash"] |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -7,8 +7,6 @@ | |
install_requires=[ | ||
'click', | ||
'docker', | ||
'os', | ||
'subprocess', | ||
], | ||
entry_points={ | ||
'console_scripts': [ | ||
|