From 381301411f110b9a4df3335526f52d78f6702413 Mon Sep 17 00:00:00 2001 From: Luke Craig Date: Wed, 25 Oct 2023 12:46:14 -0400 Subject: [PATCH] remove rust artifacts --- Dockerfile | 8 +++++++- 1 file changed, 7 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 41c4ba14416..d99e3a41e2d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -80,7 +80,13 @@ WORKDIR /panda/ #### Install PANDA + pypanda from builder - Stage 4 FROM builder as installer -RUN make -C /panda/build install +RUN make -C /panda/build install && \ + rm -r /usr/local/lib/panda/*/cosi \ + /usr/local/lib/panda/*/cosi_strace \ + /usr/local/lib/panda/*/gdb \ + /usr/local/lib/panda/*/snake_hook \ + /usr/local/lib/panda/*/rust_skeleton + # Install pypanda RUN cd /panda/panda/python/core && \ python3 setup.py install