chore: add docker commands to npm scripts

This commit is contained in:
Ricardo Arturo Cabral Mejia 2022-03-27 19:20:11 +00:00 committed by fiatjaf
parent 599b1aace4
commit a2621f7d48

View File

@ -7,7 +7,10 @@
"scripts": {
"lint": "eslint --ext .js,.vue ./",
"dev": "quasar dev --port 3001",
"publish": "rm -rf dist/spa && quasar build && netlify deploy --dir=dist/spa/ --prod"
"publish": "rm -rf dist/spa && quasar build && netlify deploy --dir=dist/spa/ --prod",
"docker:build": "docker build -t branle .",
"docker:run": "docker run -d -p 8080:80 --name branle --restart always branle",
"docker:stop": "docker stop branle"
},
"dependencies": {
"@quasar/extras": "^1.0.0",