nucypher/dev/docker/scripts/install/entrypoint.sh

11 lines
275 B
Bash
Raw Normal View History

2019-03-13 00:31:49 +00:00
#!/bin/bash
# runs inside docker container with access to local volume.
2019-03-28 22:41:45 +00:00
# needed for local development, creates nucypher.egg-info on local disk
# if it doesn't exist.
2019-03-13 00:31:49 +00:00
if [ ! -e /code/nucypher.egg-info ]; then
echo "First time install..."
2019-03-28 22:41:45 +00:00
python setup.py develop
2019-03-13 18:17:19 +00:00
fi