You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
17 lines
438 B
17 lines
438 B
FROM argoproj/argocd:latest
|
|
|
|
USER root
|
|
|
|
RUN apt-get update && \
|
|
apt-get install -y \
|
|
curl \
|
|
python3-pip && \
|
|
apt-get clean && \
|
|
pip3 install pipenv
|
|
|
|
RUN curl -sS https://dl.yarnpkg.com/debian/pubkey.gpg | apt-key add -
|
|
RUN echo "deb https://dl.yarnpkg.com/debian/ stable main" | tee /etc/apt/sources.list.d/yarn.list
|
|
RUN apt-get update && apt-get install -y yarn
|
|
RUN yarn global add npm cdk8s-cli
|
|
|
|
USER argocd
|
|
|