Skip to content

Commit

Permalink
� This is a combination of 3 commits.
Browse files Browse the repository at this point in the history
� 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.
  • Loading branch information
numerology committed Aug 13, 2019
1 parent a0bd790 commit d435ca0
Showing 1 changed file with 9 additions and 0 deletions.
9 changes: 9 additions & 0 deletions test/sample-test/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit d435ca0

Please sign in to comment.