Skip to content

Commit

Permalink
do rm -rf to ignore non existence
Browse files Browse the repository at this point in the history
  • Loading branch information
sonroyaalmerol authored Dec 4, 2024
1 parent 93b8582 commit e8bd6f9
Show file tree
Hide file tree
Showing 2 changed files with 2 additions and 3 deletions.
3 changes: 1 addition & 2 deletions bookworm/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -197,8 +197,7 @@ RUN set -x \
&& apt-get download -y \
box86-generic-arm \
&& dpkg-deb -R *.deb box86_tmp \
&& ls -al box86_tmp \
&& rm box86_tmp/usr/lib/i386-linux-gnu/libstdc++.so* \
&& rm -rf box86_tmp/usr/lib/i386-linux-gnu/libstdc++.so* \
&& dpkg-deb -b box86_tmp new_box86.deb \
&& dpkg -i new_box86.deb \
&& rm -rf *.deb \
Expand Down
2 changes: 1 addition & 1 deletion bullseye/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -196,7 +196,7 @@ RUN set -x \
&& apt-get download -y \
box86-generic-arm \
&& dpkg-deb -R *.deb box86_tmp \
&& rm box86_tmp/usr/lib/i386-linux-gnu/libstdc++.so.6 \
&& rm -rf box86_tmp/usr/lib/i386-linux-gnu/libstdc++.so* \
&& dpkg-deb -b box86_tmp new_box86.deb \
&& dpkg -i new_box86.deb \
&& rm -rf *.deb \
Expand Down

0 comments on commit e8bd6f9

Please sign in to comment.