diff options
-rwxr-xr-x | docker/Dockerfile | 8 |
1 files changed, 6 insertions, 2 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index ad89e7be..5451aa82 100755 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -24,8 +24,7 @@ RUN apt-get update && \ apt-get install -y curl && \ apt-get install -y build-essential && \ apt-get install -y libssl-dev && \ - apt-get install -y libffi-dev && \ - yes | pip install cryptography + apt-get install -y libffi-dev ADD . /service WORKDIR /service @@ -35,6 +34,11 @@ RUN wget -q -O vfc-nfvo-catalog.zip 'https://nexus.onap.org/service/local/artifa unzip vfc-nfvo-catalog.zip && \ rm -rf vfc-nfvo-catalog.zip +RUN sed -i "s|bind-address.*|# bind-address = 127.0.0.1|" /etc/mysql/my.cnf + +WORKDIR /service/vfc/nfvo/catalog +RUN pip install -r requirements.txt + EXPOSE 8806 EXPOSE 3306 EXPOSE 6379 |