Skip to content

Commit

Permalink
fixup || true issue (#200)
Browse files Browse the repository at this point in the history
  • Loading branch information
wiedehopf authored Sep 13, 2024
1 parent 8c8ff78 commit fb6c396
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -208,7 +208,7 @@ RUN set -x && \
apt-get autoremove -q -o APT::Autoremove::RecommendsImportant=0 -o APT::Autoremove::SuggestsImportant=0 -y && \
apt-get clean -y && \
# remove pycache
find /usr | grep -E "/__pycache__$" | xargs rm -rf || true && \
{ find /usr | grep -E "/__pycache__$" | xargs rm -rf || true; } && \
rm -rf /src /tmp/* /var/lib/apt/lists/* /var/log/* /var/cache/* && \
# Store container version
grep piaware /VERSIONS | cut -d " " -f 2 > /IMAGE_VERSION
Expand Down

0 comments on commit fb6c396

Please sign in to comment.