FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
docker/micro-ROS-Agent/Dockerfile at rolling · micro-ROS/docker · GitHub
micro-ROS
/
docker
Public
Notifications
You must be signed in to change notification settings
Fork
32
Star
59
Code
Issues
2
Pull requests
4
Actions
Projects
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Actions
Projects
Security and quality
Insights
Expand file tree
Breadcrumbs
docker
/
micro-ROS-Agent
/
Dockerfile
Copy path
More file actions
More file actions
Latest commit
History
History
History
29 lines (21 loc) · 780 Bytes
Breadcrumbs
docker
/
micro-ROS-Agent
/
Dockerfile
Copy path
File metadata and controls
29 lines (21 loc) · 780 Bytes
Raw
Copy raw file
Download raw file
Open symbols panel
Edit and raw actions
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
FROM
microros/base:rolling AS micro-ros-agent-builder
WORKDIR
/uros_ws
RUN
. /opt/ros/$ROS_DISTRO/setup.sh \
&& . install/local_setup.sh \
&& apt update \
&& ros2 run micro_ros_setup create_agent_ws.sh \
&& ros2 run micro_ros_setup build_agent.sh \
&& rm -rf log/ build/ src/
FROM
ros:rolling-ros-core
COPY
--from=micro-ros-agent-builder /uros_ws /uros_ws
WORKDIR
/uros_ws
#
Disable shared memory
COPY
disable_fastdds_shm.xml disable_fastdds_shm_localhost_only.xml /tmp/
ENV
RMW_IMPLEMENTATION=rmw_fastrtps_cpp
ENV
MICROROS_DISABLE_SHM=1
RUN
echo
". /opt/ros/$ROS_DISTRO/setup.bash"
>> ~/.bashrc
RUN
echo
". /uros_ws/install/setup.bash"
>> ~/.bashrc
#
setup entrypoint
COPY
./micro-ros_entrypoint.sh /
ENTRYPOINT
[
"/bin/sh"
,
"/micro-ros_entrypoint.sh"
]
CMD
[
"--help"
]
Back
|
FazBrowse Home
|
New Git URL