From 20375315badc7ba39bac4a1e5c7abd7071640523 Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?Pedro=20Gon=C3=A7alves?= Date: Fri, 31 Aug 2018 18:25:04 +0100 Subject: [PATCH] docker/Dockerfile: remove cmake and add apt-utils. --- docker/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile b/docker/Dockerfile index 4e5e37d..3f04047 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -34,6 +34,7 @@ RUN echo "deb http://mirrors.fe.up.pt/ubuntu xenial-backports main restricted un RUN apt-key adv --recv-keys --keyserver keyserver.ubuntu.com 3B4FE6ACC0B21F32 RUN apt-get update -y RUN apt-get dist-upgrade -y +RUN apt-get install -y apt-utils RUN apt-get install -y g++-5 RUN apt-get install -y gcc-5 RUN apt-get install -y wget @@ -45,6 +46,5 @@ RUN apt-get install -y vim RUN apt-get install -y nasm RUN apt-get install -y build-essential RUN apt-get install -y make -RUN apt-get install -y cmake RUN apt-get install -y kmod RUN update-alternatives --install /usr/bin/gcc gcc /usr/bin/gcc-5 60 --slave /usr/bin/g++ g++ /usr/bin/g++-5