From d435ca045da6c1164f781ff7ff4fd7c723966e56 Mon Sep 17 00:00:00 2001 From: numerology Date: Fri, 9 Aug 2019 14:36:30 -0700 Subject: [PATCH]  This is a combination of 3 commits.  This is the 1st commit message: Move argo installation to docker file.  This is the commit message #2: Remove TODO  This is the commit message #3: Fix test. --- test/sample-test/Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) diff --git a/test/sample-test/Dockerfile b/test/sample-test/Dockerfile index bb96ec13584..170abdfe770 100644 --- a/test/sample-test/Dockerfile +++ b/test/sample-test/Dockerfile @@ -15,6 +15,15 @@ RUN pip3 install papermill==0.16.1 RUN pip3 install ipykernel==5.1.0 RUN pip3 install google-api-python-client==1.7.0 +# Install argo +RUN cd /python/src/github.com/kubeflow/pipelines +RUN echo "install argo" +RUN ARGO_VERSION=v2.3.0 +RUN mkdir -p ~/bin/ +RUN export PATH=~/bin/:$PATH +RUN curl -sSL -o ~/bin/argo "https://github.com/argoproj/argo/releases/download/$ARGO_VERSION/argo-linux-amd64" +RUN chmod +x ~/bin/argo + # Install python client, including DSL compiler. COPY ./sdk/python /sdk/python RUN cd /sdk/python && python3 setup.py install