1
1
FROM osrf/ros:humble-desktop
2
2
3
- ARG SONAR_SCANNER_VERSION=4.7 .0.2747
3
+ ARG SONAR_SCANNER_VERSION=6.1 .0.4477
4
4
5
5
ARG DEBIAN_FRONTEND=noninteractive
6
6
@@ -11,6 +11,7 @@ ENV HOME /home/dockerdev
11
11
ARG UID=1000
12
12
13
13
RUN apt-get update && apt-get install --yes \
14
+ apt-utils \
14
15
build-essential \
15
16
pkg-config \
16
17
cmake \
@@ -23,9 +24,16 @@ RUN apt-get update && apt-get install --yes \
23
24
# Add a "dockerdev" user with sudo capabilities
24
25
# 1000 is the first user ID issued on Ubuntu; might
25
26
# be different for Mac users. Might need to add more.
26
- RUN useradd -u ${UID} -ms /bin/bash -G sudo dockerdev && \
27
- echo '%sudo ALL=(ALL) NOPASSWD:ALL' >>/etc/sudoers && \
28
- chown -R dockerdev:dockerdev $HOME/
27
+ # Create the user with the specified UID
28
+ RUN useradd -u $UID -m dockerdev && \
29
+ # Set the user's shell to /bin/bash
30
+ chsh -s /bin/bash dockerdev && \
31
+ # Add the user to the sudo group
32
+ usermod -aG sudo dockerdev && \
33
+ # Add the user to sudoers with no password prompt for sudo commands
34
+ echo '%sudo ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers && \
35
+ # Change ownership of the home directory to the new user
36
+ chown -R dockerdev:dockerdev $HOME
29
37
30
38
USER dockerdev
31
39
@@ -44,10 +52,10 @@ RUN sudo apt-get -y install gcovr
44
52
# Download and set up sonar-scanner
45
53
RUN sudo apt-get -y install unzip && \
46
54
mkdir -p $HOME/.sonar && \
47
- curl -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux.zip && \
55
+ curl -sSLo $HOME/.sonar/sonar-scanner.zip https://binaries.sonarsource.com/Distribution/sonar-scanner-cli/sonar-scanner-cli-${SONAR_SCANNER_VERSION}-linux-x64 .zip && \
48
56
unzip -o $HOME/.sonar/sonar-scanner.zip -d $HOME/.sonar/
49
57
50
- ENV PATH="${PATH}:/home/dockerdev/.sonar/sonar-scanner-${SONAR_SCANNER_VERSION}-linux/bin"
58
+ ENV PATH="${PATH}:/home/dockerdev/.sonar/sonar-scanner-${SONAR_SCANNER_VERSION}-linux-x64 /bin"
51
59
52
60
WORKDIR /mnt/workspace/src/swiftnav-ros2
53
61
0 commit comments