1
0
mirror of https://github.com/Unleash/unleash.git synced 2024-12-22 19:07:54 +01:00

Adding docker build to finnbuild.json

This commit is contained in:
Gard Rimestad 2015-06-22 10:53:10 +02:00 committed by Ivar Conradi Østhus
parent e800ad7a85
commit 71dc3206b3

View File

@ -21,6 +21,7 @@
} }
] ]
}, },
{ "command" : "docker build -t cloudadmin/unleash-server ." },
{ "command" : "rm -rf sql && mkdir sql" }, { "command" : "rm -rf sql && mkdir sql" },
{ "command" : "scripts/generate-liquibase-artifact.js > sql/db.changelog-master.xml"}, { "command" : "scripts/generate-liquibase-artifact.js > sql/db.changelog-master.xml"},
{ "command" : "jar -cf unleash-db.jar sql"}, { "command" : "jar -cf unleash-db.jar sql"},
@ -37,6 +38,7 @@
], ],
"default": [ "default": [
{"command": "npm install && npm run pg-virtualenv-test"}, {"command": "npm install && npm run pg-virtualenv-test"},
{"command" : "docker build -t cloudadmin/unleash-server ." },
] ]
} }