feat(docker): add Docker test file support and runtime adapter

This commit is contained in:
2025-10-26 19:35:10 +00:00
parent 1ea3b37d18
commit 592a4f33c0
5 changed files with 392 additions and 8 deletions

View File

@@ -0,0 +1,9 @@
#!/bin/bash
# Sample Docker test file
# This file demonstrates the naming pattern: test.{baseName}.{variant}.docker.sh
# The variant "latest" maps to the Dockerfile in the project root
echo "TAP version 13"
echo "1..2"
echo "ok 1 - Sample Docker test passes"
echo "ok 2 - Docker environment is working"