diff --git a/Dockerfile b/Dockerfile index 5d181e8..86ee511 100644 --- a/Dockerfile +++ b/Dockerfile @@ -99,8 +99,7 @@ RUN cmake -S . \ # 8. Final Cleanup & Runtime WORKDIR /opt -RUN chmod -R a+rwX /opt && \ - find /opt/venv -type f -name "*.so" -exec strip -s {} + 2>/dev/null || true && \ +RUN find /opt/venv -type f -name "*.so" -exec strip -s {} + 2>/dev/null || true && \ find /opt/venv -type d -name "__pycache__" -prune -exec rm -rf {} + && \ rm -rf /root/.cache/pip || true && \ dnf clean all && rm -rf /var/cache/dnf/* @@ -142,6 +141,4 @@ RUN echo "Installing Custom RCCL..." && \ rm /tmp/librccl.so.1 -RUN chmod -R a+rwX /opt - CMD ["/bin/bash"]