mdempsky labs
Personal sandbox for labautomate experiments. Each lab below maps to AWS infrastructure managed by CDK in mdempsky/mdempsky-labs/infra.
container-test
activeProof-of-concept build pipeline: CodeCommit repo → CodeBuild → ECR Public.
Validates the end-to-end path for automatically building container images from a CodeCommit repository. The intent is to later wire an AI coding agent to this repo so that agent-authored code gets built, tagged, and published without human intervention. This lab is the plumbing before the agent.
Try it locally
# Docker docker run -p 3000:3000 public.ecr.aws/s5a1e6y7/container-test:latest # Apple container (macOS) container run -p 3000:3000 public.ecr.aws/s5a1e6y7/container-test:latest
Then open http://localhost:3000. No auth required — ECR Public images are freely pullable.
Console links
- CodeCommit repo (container-test)
- CodeBuild project (container-test-build)
- EventBridge rule (push → build trigger)
- ECR Public repo (public.ecr.aws/s5a1e6y7/container-test)
- CloudFormation stacks
If something looks wrong
- If a build is red: check the CodeBuild history link above for the failed build log.
- If the ECR image is stale: push a commit to container-test main to re-trigger the build.