diff options
author | Vijay Venkatesh Kumar <vv770d@att.com> | 2018-10-01 21:00:04 +0000 |
---|---|---|
committer | Gerrit Code Review <gerrit@onap.org> | 2018-10-01 21:00:04 +0000 |
commit | 6e65857b5f4a3f2ec2be2c2e2743f543e6e25e10 (patch) | |
tree | 90ae5c1bc15dbb7c9bbbfe9621cf1bd78faa9b73 | |
parent | 3ba3693eeffbcc20fe6579670d7941ca78367907 (diff) | |
parent | 787938146b29639cd8bfe0308d0ebd6e89b6a800 (diff) |
Merge "Use release candidate versions of PNDA"
-rw-r--r-- | pnda-bootstrap-container/Dockerfile | 9 |
1 files changed, 4 insertions, 5 deletions
diff --git a/pnda-bootstrap-container/Dockerfile b/pnda-bootstrap-container/Dockerfile index 6a93aa9..1b90d65 100644 --- a/pnda-bootstrap-container/Dockerfile +++ b/pnda-bootstrap-container/Dockerfile @@ -18,12 +18,11 @@ FROM python:2.7.15 as build -ARG PNDARELEASE=develop +ARG PNDACLITAG=2.0.0 +ARG PLATFORMSALTTAG=5.0.0 -# RUN git clone -b $PNDARELEASE https://github.com/pndaproject/pnda-cli.git -# Use this repository temporary until it's merged into PNDA upstream -RUN git clone -b existing-network https://github.com/donaldh/pnda-cli.git -RUN git clone -b $PNDARELEASE https://github.com/pndaproject/platform-salt.git +RUN git clone -b $PNDACLITAG https://github.com/pndaproject/pnda-cli.git +RUN git clone -b $PLATFORMSALTTAG https://github.com/pndaproject/platform-salt.git RUN pip2 install --no-cache-dir -r pnda-cli/cli/requirements.txt --install-option="--prefix=/install" |