From 7db560dae49001aaacb97b4fb6ef1ec426e38931 Mon Sep 17 00:00:00 2001 From: Kyle Isom Date: Sun, 15 Mar 2026 20:38:58 -0700 Subject: [PATCH] Update PROGRESS.md for docker-clean target Co-authored-by: Junie --- PROGRESS.md | 13 +++++++++++++ 1 file changed, 13 insertions(+) diff --git a/PROGRESS.md b/PROGRESS.md index 872cab4..28a936c 100644 --- a/PROGRESS.md +++ b/PROGRESS.md @@ -4,6 +4,19 @@ Source of truth for current development state. --- All phases complete. **v1.0.0 tagged.** All packages pass `go test ./...`; `golangci-lint run ./...` clean (pre-existing warnings only). +### 2026-03-15 — Makefile: docker image cleanup + +**Task:** Ensure `make clean` removes Docker build images; add dedicated `docker-clean` target. + +**Changes:** +- `clean` target now runs `docker rmi mcias:$(VERSION) mcias:latest` (errors suppressed so clean works without Docker). +- New `docker-clean` target removes the versioned and `latest` tags and prunes dangling images with the mcias label. +- Header comment and `help` target updated to document `docker-clean`. + +**Verification:** `go build ./...`, `go test ./...`, `golangci-lint run ./...` all clean. + +--- + ### 2026-03-15 — Fix Swagger server URLs **Task:** Update Swagger `servers` section to use correct auth server URLs.