You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
|
#!/bin/bash
|
|
rm -rf backend/src/main/resources/static
|
|
rm -rf frontend/dist
|
|
cd frontend && npm install && npm run build && mv dist ../backend/src/main/resources/static
|
|
cd ../backend && mvn clean package
|
|
cd ../ && docker build -t waterknife/exam .
|