Files
daily-journal-prompt/test_docker_build.sh
2026-01-03 13:18:42 -07:00

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."