Created
February 27, 2021 06:58
-
-
Save viggin543/5b933510c81ce8f966daf763c1125b07 to your computer and use it in GitHub Desktop.
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| 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