From 50ebf3c6de1d5597f7f033fe78f39f42cdb8647a Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Patrick=20L=C3=BChne?= Date: Sun, 25 Mar 2018 17:06:40 +0200 Subject: [PATCH] Install g++ package explicitly on Ubuntu Apparently, g++ is only installed because of the Boost dependency. Make the g++ dependency explicit to avoid future package errors. --- .ci/Dockerfile-ubuntu-18.04 | 1 + 1 file changed, 1 insertion(+) diff --git a/.ci/Dockerfile-ubuntu-18.04 b/.ci/Dockerfile-ubuntu-18.04 index d635e83..bb07059 100644 --- a/.ci/Dockerfile-ubuntu-18.04 +++ b/.ci/Dockerfile-ubuntu-18.04 @@ -4,6 +4,7 @@ ARG toolchain RUN apt-get update RUN apt-get install -y libboost-all-dev cmake git ninja-build re2c +RUN if [ "${toolchain}" = "gcc" ]; then apt-get install -y g++; fi RUN if [ "${toolchain}" = "clang" ]; then apt-get install -y clang; fi VOLUME /app