From 574b9ea88b1dc50212b0c71205ef577399084b8f Mon Sep 17 00:00:00 2001 From: Steffen Vogel Date: Sat, 28 Oct 2017 16:44:05 +0200 Subject: [PATCH] docker: remove 32bit libs from Dockerfile as the opal node-type which is using them is deprecated --- Dockerfile.dev | 6 ------ Dockerfile.dev-centos | 6 ------ Dockerfile.dev-ubuntu | 8 -------- 3 files changed, 20 deletions(-) diff --git a/Dockerfile.dev b/Dockerfile.dev index 8e33d7bc4..ee724e86c 100644 --- a/Dockerfile.dev +++ b/Dockerfile.dev @@ -52,12 +52,6 @@ RUN dnf -y install \ xmlto rubygem-asciidoctor \ psmisc procps-ng -# 32bit versions of some standard libraries for RT-LAB code -RUN dnf -y install \ - libstdc++-devel.i686 \ - libuuid-devel.i686 \ - glibc-devel.i686 - # Tools for debugging, coverage, profiling RUN pip install \ gcovr \ diff --git a/Dockerfile.dev-centos b/Dockerfile.dev-centos index f50e0211c..2ffec6ffe 100644 --- a/Dockerfile.dev-centos +++ b/Dockerfile.dev-centos @@ -58,12 +58,6 @@ RUN yum -y install \ valgrind gdb gdb-gdbserver \ xmlto rubygem-asciidoctor -# 32bit versions of some standard libraries for RT-LAB code -RUN yum -y install \ - libstdc++-devel.i686 \ - libuuid-devel.i686 \ - glibc-devel.i686 - # Tools for debugging, coverage, profiling RUN pip install \ gcovr \ diff --git a/Dockerfile.dev-ubuntu b/Dockerfile.dev-ubuntu index 61b48d284..42c4a19c4 100644 --- a/Dockerfile.dev-ubuntu +++ b/Dockerfile.dev-ubuntu @@ -54,14 +54,6 @@ RUN apt-get update && apt-get install -y \ valgrind gdb gdbserver \ xmlto asciidoctor -# 32bit versions of some standard libraries for RT-LAB code -RUN dpkg --add-architecture i386 -RUN apt-get update && apt-get install -y \ - libc6:i386 \ - libstdc++6:i386 \ - uuid-dev:i386 \ - libssl-dev:i386 - # Tools for debugging, coverage, profiling RUN pip install \ gcovr \