Deployment Error due to SSL

I have a shell script that i use to deploy to a docker container. Things have been working okay up until 2 hours ago

`./docker-deploy.sh DEV
Building node
/usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning
ERROR: SSL error: [Errno 1] ssl.c:510: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed
/usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl
.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning.
InsecurePlatformWarning

./docker-deploy.sh DEV returned exit code 1

ERROR: SSL error: [Errno 1] _ssl.c:510: error:14090086:SSL routines:SSL3_GET_SERVER_CERTIFICATE:certificate verify failed Action failed: ./docker-deploy.sh DEV`

The same script just two hours ago was completing successfully

Building node /usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning Step 1 : FROM node:4.2.1 ---> b2086b70ec49 Step 2 : COPY package.json /src/package.json ---> Using cache ---> 1a4db814fb45 Step 3 : RUN cd /src; npm install ---> Using cache ---> 504c29543152 Step 4 : WORKDIR ./src ---> Using cache ---> 8e997bf3329f Step 5 : COPY . /src ---> 0e743850d699 Removing intermediate container 80023be0fc8b Step 6 : ENV DEBUG service:* ---> Running in 3777f58f182c ---> 73243f343652 Removing intermediate container 3777f58f182c Step 7 : ENV PORT 8080 ---> Running in 91979691abf1 ---> a83e62fad89f Removing intermediate container 91979691abf1 Step 8 : EXPOSE 8080 ---> Running in 7fe4f4ef4a25 ---> 8690e95b15b7 Removing intermediate container 7fe4f4ef4a25 Step 9 : CMD node --harmony_destructuring ./main.js ---> Running in 538c29341e1a ---> 9ca51cdaeffb Removing intermediate container 538c29341e1a Successfully built 9ca51cdaeffb /usr/local/lib/python2.7/dist-packages/requests/packages/urllib3/util/ssl_.py:90: InsecurePlatformWarning: A true SSLContext object is not available. This prevents urllib3 from configuring SSL appropriately and may cause certain SSL connections to fail. For more information, see https://urllib3.readthedocs.org/en/latest/security.html#insecureplatformwarning. InsecurePlatformWarning Recreating services_node_2 Recreating services_node_3 Recreating services_node_4 Recreating services_node_5 Recreating services_node_1