Skip to content

Instantly share code, notes, and snippets.

@jk0
Last active November 29, 2016 23:16
Show Gist options
  • Save jk0/dd5343ac044fed484596ce98d08542bc to your computer and use it in GitHub Desktop.
Save jk0/dd5343ac044fed484596ce98d08542bc to your computer and use it in GitHub Desktop.
gcloud Dockerfile
FROM ubuntu:xenial
RUN apt-get update && apt-get install -y apt-transport-https ca-certificates curl docker.io vim
RUN echo "deb https://packages.cloud.google.com/apt cloud-sdk-xenial main" > /etc/apt/sources.list.d/google-cloud-sdk.list
RUN curl https://packages.cloud.google.com/apt/doc/apt-key.gpg | apt-key add -
RUN apt-get update && apt-get install -y google-cloud-sdk
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment