Skip to content

Commit

Permalink
add proxies on 2.3
Browse files Browse the repository at this point in the history
  • Loading branch information
duartecoelhomovai committed Oct 6, 2023
1 parent 8f99037 commit 016d217
Show file tree
Hide file tree
Showing 2 changed files with 4 additions and 0 deletions.
2 changes: 2 additions & 0 deletions noetic/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,6 +48,8 @@ SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN find /etc/apt/sources.list.d/ -type f -name 'ros*.list' -exec rm {} \; &&\

Check failure on line 48 in noetic/Dockerfile

View workflow job for this annotation

GitHub Actions / movai-base-noetic / build_deploy

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`

Check failure on line 48 in noetic/Dockerfile

View workflow job for this annotation

GitHub Actions / movai-base-noetic / build_deploy

DL3027 warning: Do not use apt as it is meant to be a end-user tool, use apt-get or apt-cache instead
#apt-key adv --keyserver 'hkp://keyserver.ubuntu.com:80' --recv-key "${ROS_GPG_KEY}" &&\
echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections &&\
apt update &&\
apt-get install -y curl gnupg --no-install-recommends &&\
apt-get update && apt-get upgrade -y && apt-get install -y curl --no-install-recommends &&\
curl -fsSL https://raw.githubusercontent.com/ros/rosdistro/master/ros.key | gpg --dearmor -o /usr/share/keyrings/ros.key &&\
echo "deb [signed-by=/usr/share/keyrings/ros.key] https://artifacts.aws.cloud.mov.ai/repository/ppa-proxy-ros focal main" | tee /etc/apt/sources.list.d/movai-ros.list > /dev/null &&\
Expand Down
2 changes: 2 additions & 0 deletions noetic/Dockerfile-rosfree
Original file line number Diff line number Diff line change
Expand Up @@ -45,6 +45,8 @@ COPY files/packages.bash /tmp/packages.bash
COPY $ROS_VERSION/packages.apt /tmp/packages.apt
SHELL ["/bin/bash", "-o", "pipefail", "-c"]
RUN echo 'debconf debconf/frontend select Noninteractive' | debconf-set-selections && \

Check failure on line 47 in noetic/Dockerfile-rosfree

View workflow job for this annotation

GitHub Actions / movai-base-focal / build_deploy

DL3008 warning: Pin versions in apt get install. Instead of `apt-get install <package>` use `apt-get install <package>=<version>`

Check failure on line 47 in noetic/Dockerfile-rosfree

View workflow job for this annotation

GitHub Actions / movai-base-focal / build_deploy

DL3027 warning: Do not use apt as it is meant to be a end-user tool, use apt-get or apt-cache instead

Check failure on line 47 in noetic/Dockerfile-rosfree

View workflow job for this annotation

GitHub Actions / movai-base-focal / build_deploy

SC2086 info: Double quote to prevent globbing and word splitting.
apt update &&\
apt-get install -y curl gnupg --no-install-recommends &&\
mv /etc/apt/sources.list /etc/apt/sources.list.bck &&\
touch /etc/apt/sources.list &&\
curl -fsSL $APT_REPOSITORY/movai-applications/gpg | apt-key add - &&\
Expand Down

0 comments on commit 016d217

Please sign in to comment.