Skip to content

Commit

Permalink
Merge pull request #427 from GoogleCloudPlatform/cleanup_stable
Browse files Browse the repository at this point in the history
use rm to remove __pycache__ instead of -delete to support deleting n…
  • Loading branch information
anindyatahsin committed Jun 14, 2024
2 parents 42d9772 + 3b8a2fd commit cca67db
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion stable/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -34,5 +34,5 @@ RUN gcloud --version && \
gcloud config set component_manager/disable_update_check true && \
rm -rf /root/.cache/pip/ && \
find / -name '*.pyc' -delete && \
find / -name '*__pycache__*' -delete
find / -name '*__pycache__*' -exec rm -r {} \+
VOLUME ["/root/.config"]

0 comments on commit cca67db

Please sign in to comment.