Skip to content

Instantly share code, notes, and snippets.

@viggin543
Created February 27, 2021 06:58
Show Gist options
  • Save viggin543/5b933510c81ce8f966daf763c1125b07 to your computer and use it in GitHub Desktop.
Save viggin543/5b933510c81ce8f966daf763c1125b07 to your computer and use it in GitHub Desktop.
FROM argoproj/argocd:latest
WORKDIR /app
COPY do-backup.bash /app/app
USER root
RUN apt-get update -y
RUN apt-get upgrade -y
RUN apt install python curl bash -y
RUN curl -sSL "https://sdk.cloud.google.com" | bash
ENV PATH $PATH:/root/google-cloud-sdk/bin
CMD ["/app/app"]
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment