13 lines
337 B
Bash
Executable File
13 lines
337 B
Bash
Executable File
#!/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."
|
|
|