We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 2d49e0c commit 90cf79eCopy full SHA for 90cf79e
Dockerfile
@@ -34,6 +34,12 @@ RUN chmod 755 /usr/bin/dumb-init
34
RUN groupadd -g 10001 snyk
35
RUN useradd -g snyk -d /srv/app -u 10001 snyk
36
37
+# Install gcloud
38
+RUN curl -sL https://sdk.cloud.google.com > /install.sh
39
+RUN bash /install.sh --disable-prompts --install-dir=/
40
+ENV PATH=/google-cloud-sdk/bin:$PATH
41
+RUN rm /install.sh
42
+
43
WORKDIR /srv/app
44
45
COPY --chown=snyk:snyk --from=skopeo-build /usr/bin/skopeo /usr/bin/skopeo
0 commit comments