From ac2e875748591d1cd2d2553cc357616feff4b866 Mon Sep 17 00:00:00 2001 From: Mikael Arguedas Date: Fri, 17 Apr 2020 19:03:43 +0200 Subject: [PATCH] install libssl-dev in nightly images Fast-RTPS exports a dependency on OpenSSL, so we need the dev package to be able to build packages on top. Signed-off-by: Mikael Arguedas --- ros2/nightly/images.yaml.em | 1 + ros2/nightly/nightly/Dockerfile | 1 + 2 files changed, 2 insertions(+) diff --git a/ros2/nightly/images.yaml.em b/ros2/nightly/images.yaml.em index 079b474e1..86c3316a6 100644 --- a/ros2/nightly/images.yaml.em +++ b/ros2/nightly/images.yaml.em @@ -11,6 +11,7 @@ images: - docker_templates upstream_packages: - bash-completion + - libssl-dev env_before: LANG: "C.UTF-8" LC_ALL: "C.UTF-8" diff --git a/ros2/nightly/nightly/Dockerfile b/ros2/nightly/nightly/Dockerfile index 8433ba011..c24fb2d90 100644 --- a/ros2/nightly/nightly/Dockerfile +++ b/ros2/nightly/nightly/Dockerfile @@ -14,6 +14,7 @@ RUN apt-get update && apt-get install -q -y \ dirmngr \ git \ gnupg2 \ + libssl-dev \ lsb-release \ python3-pip \ wget \