13 lines
337 B
Bash
13 lines
337 B
Bash
|
|
#!/bin/bash
|
||
|
|
|
||
|
|
# Test Docker build for the backend
|
||
|
|
echo "Testing backend Docker build..."
|
||
|
|
docker build -t daily-journal-prompt-backend-test ./backend
|
||
|
|
|
||
|
|
# Test Docker build for the frontend
|
||
|
|
echo -e "\nTesting frontend Docker build..."
|
||
|
|
docker build -t daily-journal-prompt-frontend-test ./frontend
|
||
|
|
|
||
|
|
echo -e "\nDocker build tests completed."
|
||
|
|
|