Fuller docker config
[wolnelektury.git] / scripts / entrypoint.sh
1 #!/bin/bash
2
3 # For use in development only.
4 # Installs in editable mode any libs mounted under /editable/
5 # This way, we can easily work on e.g. librarian.
6
7 for lib in /editable/*
8 do
9     [ -d "$lib" ] || continue
10     pip install -e $lib
11 done
12
13 exec "$@"