diff options
author | Jack Lucas <jflucas@research.att.com> | 2018-04-06 20:46:11 +0000 |
---|---|---|
committer | Jack Lucas <jflucas@research.att.com> | 2018-04-06 20:46:46 +0000 |
commit | 43160301f2142d597ab7e820e53bb699f86a9b05 (patch) | |
tree | f54b5c17fa5a236ac0887f45979b7db8ec0becdb /cm-container/Dockerfile-template | |
parent | 1748ff0081f14803b7a486d80007e7cd36872853 (diff) |
Update list of type files
Change-Id: I059269176399071db8f2a11f00b16d687d18525b
Issue-ID: DCAEGEN2-416
Signed-off-by: Jack Lucas <jflucas@research.att.com>
Diffstat (limited to 'cm-container/Dockerfile-template')
-rw-r--r-- | cm-container/Dockerfile-template | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/cm-container/Dockerfile-template b/cm-container/Dockerfile-template index 7d97a24..cbfca20 100644 --- a/cm-container/Dockerfile-template +++ b/cm-container/Dockerfile-template @@ -21,12 +21,13 @@ FROM cloudifyplatform/community:cloudify-manager-18.2.28 MAINTAINER maintainer ENV TYPE_REPO {{ ONAPTEMPLATE_RAWREPOURL_org_onap_dcaegen2_platform_plugins_releases }} +ENV CCSDK_REPO {{ ONAPTEMPLATE_RAWREPOURL_org_onap_ccsdk_platform_plugins_releases }} + # Store type files locally -RUN pwd RUN mkdir scripts COPY get-type-files.sh scripts # Load our type files and the Cloudify 3.4 type files -RUN scripts/get-type-files.sh ${TYPE_REPO}\ +RUN scripts/get-type-files.sh ${TYPE_REPO} ${CCSDK_REPO}\ && mkdir /opt/manager/resources/spec/cloudify/3.4\ && curl -Ss https://cloudify.co/spec/cloudify/3.4/types.yaml > /opt/manager/resources/spec/cloudify/3.4/types.yaml\ && chown -R cfyuser:cfyuser /opt/manager/resources/spec/cloudify/3.4 |