Change theme
Help
Press space for more information.
Show links for this issue (Shortcut: i, l)
Copy issue ID
Previous Issue (Shortcut: k)
Next Issue (Shortcut: j)
Sign in to use full features.
Vote: I am impacted
Notification menu
Refresh (Shortcut: Shift+r)
Go home (Shortcut: u)
Pending code changes (auto-populated)
View issue level access limits(Press Alt + Right arrow for more information)
Unintended behavior
View staffing
Description
But how do you do it inside a docker?
IS not clear based on the docs
example
```
FROM python:3.9-slim
RUN pip install --no-input keyrings.google-artifactregistry-auth
COPY container/pip_conf.conf /etc/pip.conf
RUN pip install private-library
```
how you make this docker inherit the gcloud access your terminal/computer has?
note
1)
ideally, i don't want to copy paste (or secrets, it's the same) the sa.
I want inheritance.
2)
compute engine magically works.
With same config, doing docker build inside the compute engine vm, has inheritance for the gar access.