You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
I am trying to create my own image to use inside "Container optimized OS".
FROM google/cloud-sdk:alpine as builder1
RUN gcloud components install docker-credential-gcr --quiet
RUN gcloud components update
RUN docker-credential-gcr version
FROM docker/compose
COPY --from=builder1 /google-cloud-sdk/bin/* /usr/local/bin/
RUN docker-credential-gcr configure-docker
CMD docker-compose
I run into the problem that it always installs version 1.5.0 which does not let me add records for artifact registries.
Any idea how to install the correct version of docker-credential-gcr?