This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| FROM ubuntu | |
| # usage | |
| # create the image: | |
| # docker build -t buildozer . | |
| # | |
| # use the built image: | |
| # docker run --rm -v /path/to/project:/home/build/build -w /home/build/build buildozer | |
| # | |
| # you can use $PWD as /path/to/project if you are in the project dir |
This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
| #!/usr/bin/env python | |
| # Author: Chris Eberle <[email protected]> | |
| # Watch for any changes in a module or package, and reload it automatically | |
| import pyinotify | |
| import imp | |
| import os | |
| class ModuleWatcher(pyinotify.ProcessEvent): | |
| """ |