Product-Manager/prepare-app.sh

7 lines
203 B
Bash
Raw Normal View History

2022-04-25 12:07:08 +00:00
#!/bin/bash
echo "Preparing the app.."
2022-05-07 11:14:18 +00:00
docker build ./product-manager-backend -t product-manager-backend
docker build ./product-manager-frontend -t product-manager-frontend
echo "Preparation complete."