Remove .boto files that are no longer needed during docker build (#20407)

## Why are these changes needed?

The .boto files are already added to the base image and ACL'ed to root, adding them again during app config build causes permission issues.

## Related issue number
This commit is contained in:
Yiran Wang 2021-11-15 20:49:33 -08:00 committed by GitHub
parent 31eb385426
commit f4e8319eaa
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -12,8 +12,6 @@ python:
post_build_cmds:
- pip uninstall -y ray || true
# Needed for gsutil authentication
- printf "[GoogleCompute]\nservice_account = default\n" > /home/ray/.boto
# Install Ray
- pip3 install -U {{ env["RAY_WHEELS"] | default("ray") }}
- {{ env["RAY_WHEELS_SANITY_CHECK"] | default("echo No Ray wheels sanity check") }}