diff options
author | vv770d <vv770d@att.com> | 2021-09-21 19:25:00 +0000 |
---|---|---|
committer | vv770d <vv770d@att.com> | 2021-09-27 19:20:16 +0000 |
commit | 8852e683a9cd036f1b0d7cb38153b88eded329de (patch) | |
tree | 41ddea5fa9c9878946344a0bfdd23c4498148a74 /mod/onboardingapi/Dockerfile | |
parent | 0d1b8727a44b0add010b79e495b799e538057d20 (diff) |
[MOD/onboarding] Switch to v3 component spec2.13.0-mod-onboardingapi
Change-Id: I31f05857aebb606fc032065800e57fcc5be1dd96
Signed-off-by: vv770d <vv770d@att.com>
Issue-ID: DCAEGEN2-2876
Signed-off-by: vv770d <vv770d@att.com>
Diffstat (limited to 'mod/onboardingapi/Dockerfile')
-rw-r--r-- | mod/onboardingapi/Dockerfile | 5 |
1 files changed, 4 insertions, 1 deletions
diff --git a/mod/onboardingapi/Dockerfile b/mod/onboardingapi/Dockerfile index d25d183..e5ca734 100644 --- a/mod/onboardingapi/Dockerfile +++ b/mod/onboardingapi/Dockerfile @@ -1,5 +1,6 @@ # ============LICENSE_START======================================================= # Copyright 2020 Deutsche Telekom. All rights reserved. +# Copyright (c) 2021 AT&T Intellectual Property. All rights reserved. # ================================================================================ # Licensed under the Apache License, Version 2.0 (the "License"); # you may not use this file except in compliance with the License. @@ -16,7 +17,7 @@ FROM nexus3.onap.org:10001/onap/integration-python:7.0.1 ENV SERVER_URL=https://git.onap.org/dcaegen2/platform/plain/mod -ENV PATH_COMPONENT_SPEC=/component-json-schemas/component-specification/dcae-cli-v2/component-spec-schema.json +ENV PATH_COMPONENT_SPEC=/component-json-schemas/component-specification/dcae-cli-v3/component-spec-schema.json ENV PATH_DATA_FORMAT=/component-json-schemas/data-format/dcae-cli-v1/data-format-schema.json ENV PG_CONN= @@ -30,8 +31,10 @@ RUN apk update && \ mkdir schemas && \ wget -O schemas/compspec.json $SERVER_URL$PATH_COMPONENT_SPEC && \ wget -O schemas/dataformat.json $SERVER_URL$PATH_DATA_FORMAT && \ + pip install --upgrade pip && \ pip install . + USER onap EXPOSE 8080 |