From 2f18d9c25806664e2910b39b792204b4d6f1b504 Mon Sep 17 00:00:00 2001 From: "Timoney, Dan (dt5972)" Date: Thu, 26 Apr 2018 11:06:30 -0400 Subject: Move pip installs from Dockerfile Pip install seems to fail in Dockerfile. Instead, move pip installs to a startup script so that they can be done on initial container startup. Change-Id: I3125307d5f9bfc980d8f9ed0bba108a5536548fd Issue-ID: SDNC-288 Signed-off-by: Timoney, Dan (dt5972) Former-commit-id: 3c48ffbeda720569fbfb8fac3e5db1cd0551474b --- .../ansible-server/src/main/scripts/startAnsibleServer.sh | 12 ++++++++++++ 1 file changed, 12 insertions(+) create mode 100644 installation/ansible-server/src/main/scripts/startAnsibleServer.sh (limited to 'installation/ansible-server/src/main/scripts') diff --git a/installation/ansible-server/src/main/scripts/startAnsibleServer.sh b/installation/ansible-server/src/main/scripts/startAnsibleServer.sh new file mode 100644 index 00000000..67af9623 --- /dev/null +++ b/installation/ansible-server/src/main/scripts/startAnsibleServer.sh @@ -0,0 +1,12 @@ +#/bin/bash + +if [ ! -d /tmp/.ansible-server-installed] +then + pip install PyMySQL + pip install cherrypy + pip install requests + date > /tmp/.ansible-server-installed 2>&1 +fi + +cd /opt/onap/sdnc +exec python RestServer.py > RestServer.out \ No newline at end of file -- cgit 1.2.3-korg