FazBrowse GitHub Viewer
|
Trending
|
URL:
|
Home
Tools:
[Download Repo ZIP]
[View Raw Code]
[Original HTTPS Page]
AirSim/tools/Dockerfile-ROS at main · microsoft/AirSim · GitHub
Uh oh!
There was an error while loading.
Please reload this page
.
microsoft
/
AirSim
Public
Notifications
You must be signed in to change notification settings
Fork
4.9k
Star
18.4k
Code
Issues
683
Pull requests
97
Discussions
Actions
Projects
Wiki
Security and quality
0
Insights
Additional navigation options
Code
Issues
Pull requests
Discussions
Actions
Projects
Wiki
Security and quality
Insights
Expand file tree
Breadcrumbs
AirSim
/
tools
/
Dockerfile-ROS
Copy path
More file actions
More file actions
Latest commit
History
History
History
30 lines (24 loc) · 821 Bytes
Breadcrumbs
AirSim
/
tools
/
Dockerfile-ROS
Copy path
File metadata and controls
30 lines (24 loc) · 821 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
30
FROM ubuntu:18.04
RUN DEBIAN_FRONTEND=noninteractive apt-get update && apt-get install -y \
apt-utils \
apt-transport-https \
software-properties-common \
sudo \
tzdata \
&& apt-get clean \
&& rm -rf /var/lib/apt/lists/* && \
dpkg-reconfigure -f noninteractive tzdata
ARG UNAME=testuser
# Create new user `docker` and disable password and gecos for later
RUN adduser --disabled-password --gecos '' $UNAME
# Add new user docker to sudo group
RUN adduser $UNAME sudo
# Ensure sudo group users are not
# asked for a password when using
# sudo command by ammending sudoers file
RUN echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers
ADD install_ros_deps.sh /
RUN chmod +x /install_ros_deps.sh
RUN DEBIAN_FRONTEND=noninteractive /install_ros_deps.sh
USER $UNAME
WORKDIR /home/${UNAME}
Back
|
FazBrowse Home
|
New Git URL