Staged Docker build script

This commit is contained in:
2016-08-10 18:27:27 +02:00
parent 8fc1f8b31d
commit 881cb6bc40
16 changed files with 217 additions and 95 deletions

View File

@@ -1,12 +1,12 @@
from os.path import abspath, dirname
import sys
from pillar_server import PillarServer
activate_this = '/data/venv/bin/activate_this.py'
execfile(activate_this, dict(__file__=activate_this))
from flup.server.fcgi import WSGIServer
from pillar import PillarServer
sys.path.append('/data/git/blender-cloud/bcloud-server/')
sys.path.append('/data/git/blender-cloud/')
application = PillarServer(dirname(abspath(__file__)))
application.process_extensions()