Skip to content

Commit

Permalink
feat: add argocd to dockerfile
Browse files Browse the repository at this point in the history
  • Loading branch information
nherment committed Dec 10, 2024
1 parent 50aa6b1 commit 94a180d
Showing 1 changed file with 6 additions and 0 deletions.
6 changes: 6 additions & 0 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -41,6 +41,8 @@ RUN if [ "$TARGETPLATFORM" = "linux/arm64" ]; then \
RUN chmod 777 kube-lineage
RUN ./kube-lineage --version

RUN curl -sSL -o argocd-linux-amd64 https://github.com/argoproj/argo-cd/releases/latest/download/argocd-linux-amd64

# Set up poetry
ARG PRIVATE_PACKAGE_REGISTRY="none"
RUN if [ "${PRIVATE_PACKAGE_REGISTRY}" != "none" ]; then \
Expand Down Expand Up @@ -90,6 +92,10 @@ RUN apt-get install -y kubectl
COPY --from=builder /app/kube-lineage /usr/local/bin
RUN kube-lineage --version

COPY --from=builder /app/argocd-linux-amd64 /usr/local/bin/argocd
RUN chmod 555 /usr/local/bin/argocd
RUN argocd --help

ARG AWS_DEFAULT_PROFILE
ARG AWS_DEFAULT_REGION
ARG AWS_PROFILE
Expand Down

0 comments on commit 94a180d

Please sign in to comment.