Skip to content
Snippets Groups Projects
Commit 88667b9d authored by Wouter Deconinck's avatar Wouter Deconinck
Browse files

dev.Dockerfile: do not strip tensorflow-lite static library

parent 27bf095e
Branches
Tags
1 merge request!261dev.Dockerfile: do not strip tensorflow-lite static library
...@@ -173,7 +173,7 @@ RUN cd /opt/spack-environment && spack env activate . && spack gc -y ...@@ -173,7 +173,7 @@ RUN cd /opt/spack-environment && spack env activate . && spack gc -y
# note that we do not strip python libraries as can cause issues in some cases # note that we do not strip python libraries as can cause issues in some cases
RUN find -L /usr/local/* \ RUN find -L /usr/local/* \
-type d -name site-packages -prune -false -o \ -type d -name site-packages -prune -false -o \
-type f -not -name "zdll.lib" \ -type f -not -name "zdll.lib" -not -name libtensorflow-lite.a \
-exec realpath '{}' \; \ -exec realpath '{}' \; \
| xargs file -i \ | xargs file -i \
| grep 'charset=binary' \ | grep 'charset=binary' \
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment