From 3f2d4910da5761501c3de3f638dc6070f201a71a Mon Sep 17 00:00:00 2001 From: Sylvester Joosten <sjoosten@anl.gov> Date: Mon, 11 Jan 2021 23:03:06 +0000 Subject: [PATCH] Disabled binary stripping for release image --- containers/release/Dockerfile.in | 10 +++++----- 1 file changed, 5 insertions(+), 5 deletions(-) diff --git a/containers/release/Dockerfile.in b/containers/release/Dockerfile.in index 2b3b8c5fe..4888e53f3 100644 --- a/containers/release/Dockerfile.in +++ b/containers/release/Dockerfile.in @@ -5,11 +5,11 @@ FROM eicweb.phy.anl.gov:4567/containers/eic_container/eic_builder:@TAG@ as build RUN cd /opt/spack-environment && spack env activate . && spack gc -y # Strip all the binaries -RUN find -L /usr/local/* -type f -exec readlink -f '{}' \; | \ - xargs file -i | \ - grep 'charset=binary' | \ - grep 'x-executable\|x-archive\|x-sharedlib' | \ - awk -F: '{print $1}' | xargs strip -s +#RUN find -L /usr/local/* -type f -exec readlink -f '{}' \; | \ + #xargs file -i | \ + #grep 'charset=binary' | \ + #grep 'x-executable\|x-archive\|x-sharedlib' | \ + #awk -F: '{print $1}' | xargs strip -s FROM eicweb.phy.anl.gov:4567/containers/image_recipes/debian_minimal:testing-20201117 LABEL maintainer="Sylvester Joosten <sjoosten@anl.gov>" \ -- GitLab