feat(L08): add Docker fundamentals card

This commit is contained in:
user
2026-07-21 18:20:10 +02:00
commit 2ed1b7954a
39 changed files with 7419 additions and 0 deletions
+11
View File
@@ -0,0 +1,11 @@
TASK ?= task01_build_image_spec
.PHONY: build test run trace clean
build:
@tools/card-action.sh build
test:
@STEM_TASK="$(TASK)" tools/card-action.sh test
run: test
trace:
@STEM_TASK="$(TASK)" tools/card-action.sh debug
clean:
@find .stem/artifacts -type f -name 'trace.log' -delete 2>/dev/null || true