diff options
-rw-r--r-- | azure/docker/Dockerfile | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/azure/docker/Dockerfile b/azure/docker/Dockerfile index 1b232ae..8099aed 100644 --- a/azure/docker/Dockerfile +++ b/azure/docker/Dockerfile @@ -22,8 +22,8 @@ RUN cd /opt/ && \ wget -q -O multicloud-azure.zip 'https://nexus.onap.org/service/local/artifact/maven/redirect?r=snapshots&g=org.onap.multicloud.azure&a=multicloud-azure&v=LATEST&e=zip' && \ unzip multicloud-azure.zip && \ rm -rf multicloud-azure.zip && \ - pip install -r azure/requirements.txt + pip install -r multicloud_azure/requirements.txt WORKDIR /opt -ENTRYPOINT azure/docker/docker-entrypoint.sh +ENTRYPOINT multicloud_azure/docker/docker-entrypoint.sh |