mirror of
https://github.com/argoproj/argo-cd.git
synced 2026-02-20 01:28:45 +01:00
133 lines
4.7 KiB
Docker
133 lines
4.7 KiB
Docker
ARG BASE_IMAGE=docker.io/library/ubuntu:21.10
|
|
####################################################################################################
|
|
# Builder image
|
|
# Initial stage which pulls prepares build dependencies and CLI tooling we need for our final image
|
|
# Also used as the image in CI jobs so needs all dependencies
|
|
####################################################################################################
|
|
FROM docker.io/library/golang:1.18 AS builder
|
|
|
|
RUN echo 'deb http://deb.debian.org/debian buster-backports main' >> /etc/apt/sources.list
|
|
|
|
RUN apt-get update && apt-get install --no-install-recommends -y \
|
|
openssh-server \
|
|
nginx \
|
|
unzip \
|
|
fcgiwrap \
|
|
git \
|
|
git-lfs \
|
|
make \
|
|
wget \
|
|
gcc \
|
|
sudo \
|
|
zip && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
WORKDIR /tmp
|
|
|
|
COPY hack/install.sh hack/tool-versions.sh ./
|
|
COPY hack/installers installers
|
|
|
|
RUN ./install.sh helm-linux && \
|
|
INSTALL_PATH=/usr/local/bin ./install.sh kustomize && \
|
|
./install.sh awscli-linux
|
|
|
|
####################################################################################################
|
|
# Argo CD Base - used as the base for both the release and dev argocd images
|
|
####################################################################################################
|
|
FROM $BASE_IMAGE AS argocd-base
|
|
|
|
USER root
|
|
|
|
ENV DEBIAN_FRONTEND=noninteractive
|
|
|
|
RUN groupadd -g 999 argocd && \
|
|
useradd -r -u 999 -g argocd argocd && \
|
|
mkdir -p /home/argocd && \
|
|
chown argocd:0 /home/argocd && \
|
|
chmod g=u /home/argocd && \
|
|
apt-get update && \
|
|
apt-get dist-upgrade -y && \
|
|
apt-get install -y \
|
|
git git-lfs tini gpg tzdata && \
|
|
apt-get clean && \
|
|
rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
|
|
|
|
COPY hack/gpg-wrapper.sh /usr/local/bin/gpg-wrapper.sh
|
|
COPY hack/git-verify-wrapper.sh /usr/local/bin/git-verify-wrapper.sh
|
|
COPY --from=builder /usr/local/bin/helm /usr/local/bin/helm
|
|
COPY --from=builder /usr/local/bin/kustomize /usr/local/bin/kustomize
|
|
COPY --from=builder /usr/local/aws-cli/v2/current/dist /usr/local/aws-cli/v2/current/dist
|
|
COPY entrypoint.sh /usr/local/bin/entrypoint.sh
|
|
# keep uid_entrypoint.sh for backward compatibility
|
|
RUN ln -s /usr/local/bin/entrypoint.sh /usr/local/bin/uid_entrypoint.sh && \
|
|
ln -s /usr/local/aws-cli/v2/current/dist/aws /usr/local/bin/aws
|
|
|
|
# support for mounting configuration from a configmap
|
|
WORKDIR /app/config/ssh
|
|
RUN touch ssh_known_hosts && \
|
|
ln -s ssh_known_hosts /etc/ssh/ssh_known_hosts
|
|
|
|
WORKDIR /app/config
|
|
RUN mkdir -p tls && \
|
|
mkdir -p gpg/source && \
|
|
mkdir -p gpg/keys && \
|
|
chown argocd gpg/keys && \
|
|
chmod 0700 gpg/keys
|
|
|
|
ENV USER=argocd
|
|
|
|
USER 999
|
|
WORKDIR /home/argocd
|
|
|
|
####################################################################################################
|
|
# Argo CD UI stage
|
|
####################################################################################################
|
|
FROM --platform=$BUILDPLATFORM docker.io/library/node:12.18.4 AS argocd-ui
|
|
|
|
WORKDIR /src
|
|
COPY ["ui/package.json", "ui/yarn.lock", "./"]
|
|
|
|
RUN yarn install --network-timeout 200000 && \
|
|
yarn cache clean
|
|
|
|
COPY ["ui/", "."]
|
|
|
|
ARG ARGO_VERSION=latest
|
|
ENV ARGO_VERSION=$ARGO_VERSION
|
|
RUN HOST_ARCH='amd64' NODE_ENV='production' NODE_ONLINE_ENV='online' NODE_OPTIONS=--max_old_space_size=8192 yarn build
|
|
|
|
####################################################################################################
|
|
# Argo CD Build stage which performs the actual build of Argo CD binaries
|
|
####################################################################################################
|
|
FROM --platform=$BUILDPLATFORM docker.io/library/golang:1.18 AS argocd-build
|
|
|
|
WORKDIR /go/src/github.com/argoproj/argo-cd
|
|
|
|
COPY go.* ./
|
|
RUN go mod download
|
|
|
|
# Perform the build
|
|
COPY . .
|
|
COPY --from=argocd-ui /src/dist/app /go/src/github.com/argoproj/argo-cd/ui/dist/app
|
|
ARG TARGETOS
|
|
ARG TARGETARCH
|
|
RUN GOOS=$TARGETOS GOARCH=$TARGETARCH make argocd-all
|
|
|
|
####################################################################################################
|
|
# Final image
|
|
####################################################################################################
|
|
FROM argocd-base
|
|
COPY --from=argocd-build /go/src/github.com/argoproj/argo-cd/dist/argocd* /usr/local/bin/
|
|
|
|
USER root
|
|
RUN ln -s /usr/local/bin/argocd /usr/local/bin/argocd-server && \
|
|
ln -s /usr/local/bin/argocd /usr/local/bin/argocd-repo-server && \
|
|
ln -s /usr/local/bin/argocd /usr/local/bin/argocd-cmp-server && \
|
|
ln -s /usr/local/bin/argocd /usr/local/bin/argocd-application-controller && \
|
|
ln -s /usr/local/bin/argocd /usr/local/bin/argocd-dex && \
|
|
ln -s /usr/local/bin/argocd /usr/local/bin/argocd-notifications && \
|
|
ln -s /usr/local/bin/argocd /usr/local/bin/argocd-applicationset-controller
|
|
|
|
USER 999
|