7 lines
203 B
Bash
7 lines
203 B
Bash
#!/bin/bash
|
|
|
|
echo "Preparing the app.."
|
|
docker build ./product-manager-backend -t product-manager-backend
|
|
docker build ./product-manager-frontend -t product-manager-frontend
|
|
echo "Preparation complete."
|