mirror of
https://github.com/google-github-actions/setup-gcloud.git
synced 2026-08-29 05:49:22 +00:00
Co-authored-by: Thomas Osowski <osowskit@github.com> Co-authored-by: Tom Osowski <osowskit@github.com> Co-authored-by: Nick Van Wiggeren <nickvanw@github.com> Co-authored-by: Brandon Keepers <bkeepers@github.com> Co-authored-by: Nick Van Wiggeren <nickvanw@users.noreply.github.com> Co-authored-by: Steve Winton <stevewinton@gmail.com> Co-authored-by: Steve Winton <swinton@users.noreply.github.com> Co-authored-by: Greg Orzell <gorzell@users.noreply.github.com> Co-authored-by: Greg Orzell <gorzell@github.com>
14 lines
587 B
Docker
14 lines
587 B
Docker
FROM gcr.io/cloud-builders/gcloud-slim@sha256:9ce2bb0f7459621450e1730c35c9620f23824e1c6d7a810c8eb1b80712d9af5a
|
|
|
|
LABEL name="gcloud-auth"
|
|
LABEL version="1.0.0"
|
|
LABEL maintainer="GitHub Actions <support+actions@github.com>"
|
|
|
|
LABEL "com.github.actions.name"="GitHub Action for Google Cloud SDK auth"
|
|
LABEL "com.github.actions.description"="Wraps the GCloud SDK to login using a service account."
|
|
LABEL "com.github.actions.icon"="log-in"
|
|
LABEL "com.github.actions.color"="green"
|
|
COPY LICENSE README.md THIRD_PARTY_NOTICE.md /
|
|
|
|
COPY entrypoint.sh /entrypoint.sh
|
|
ENTRYPOINT ["/entrypoint.sh"]
|