File tree Expand file tree Collapse file tree
Expand file tree Collapse file tree Original file line number Diff line number Diff line change 1+ name : Build Image
2+ on :
3+ workflow_dispatch : {}
4+ push :
5+ branches :
6+ - ' master'
7+ jobs :
8+ build :
9+ name : Build image
10+ runs-on : ubuntu-latest
11+ strategy :
12+ fail-fast : false
13+ steps :
14+ - uses : actions/checkout@v2
15+ - run : docker build . -t galaxy/cloudman-server:latest
16+ - name : Login to docker hub
17+ uses : actions-hub/docker/login@master
18+ env :
19+ DOCKER_USERNAME : ${{ secrets.DOCKERHUB_USERNAME }}
20+ DOCKER_PASSWORD : ${{ secrets.DOCKERHUB_PASSWORD }}
21+ - name : Push to docker hub
22+ uses : actions-hub/docker@master
23+ with :
24+ args : push galaxy/cloudman-server:latest
Original file line number Diff line number Diff line change 9696 import yaml
9797 with open (CM_GLOBAL_CONTEXT_PATH ) as f :
9898 print (f"Loading cloudman global context from: { CM_GLOBAL_CONTEXT_PATH } " )
99- CM_GLOBAL_CONTEXT = yaml .load (f )
99+ CM_GLOBAL_CONTEXT = yaml .safe_load (f )
100100else :
101101 CM_GLOBAL_CONTEXT = {}
102102
Original file line number Diff line number Diff line change @@ -10,7 +10,7 @@ pydevd>=1.0.0
1010# jinja2 for rendering install templates
1111jinja2
1212# get latest package versions for now
13- git+https://github.com/CloudVE/cloudbridge
13+ git+https://github.com/CloudVE/cloudbridge#egg=cloudbridge[full]
1414git+https://github.com/CloudVE/djcloudbridge
1515# Leave cloudlaunch-cli before cloudlaunch-server due to coreapi version mismatch
1616git+https://github.com/CloudVE/cloudlaunch-cli
You can’t perform that action at this time.
0 commit comments