🗂️ refactor: organize Dockerfiles into docker/ directory and update all references
Some checks failed
CI/CD Pipeline / Build Docker Cache (push) Successful in 22s
CI/CD Pipeline / CI Pipeline (push) Failing after 47s

This commit is contained in:
2026-04-07 12:45:09 +02:00
parent 57db3e0a32
commit c3587119b7
8 changed files with 194 additions and 11 deletions

View File

@@ -16,7 +16,12 @@ echo ""
# 2. Build the build cache image
echo "2. Building build cache image..."
docker build -t dance-lessons-coach-build-cache:$DEPS_HASH -f Dockerfile.build .
if command -v docker >/dev/null 2>&1; then
docker build -t dance-lessons-coach-build-cache:$DEPS_HASH -f docker/Dockerfile.build .
else
echo "❌ Docker not found"
exit 1
fi
echo "✅ Build cache image built: dance-lessons-coach-build-cache:$DEPS_HASH"
echo ""