From c909ae161416d94c1f4cd27fd936b6af1bcec6e5 Mon Sep 17 00:00:00 2001 From: Walmir Silva Date: Tue, 28 Oct 2025 11:22:22 -0300 Subject: [PATCH 1/2] chore: bump version to 1.5.1 --- VERSION | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/VERSION b/VERSION index bc80560..26ca594 100644 --- a/VERSION +++ b/VERSION @@ -1 +1 @@ -1.5.0 +1.5.1 From 544675a6afe35fafc56a041d046dfd52fa79b228 Mon Sep 17 00:00:00 2001 From: Walmir Silva Date: Tue, 28 Oct 2025 12:16:03 -0300 Subject: [PATCH 2/2] chore(docker): enhance dev stage with additional tooling and clean build deps Add common development utilities to the dev stage to improve debugging and developer workflow inside the container: - bash-completion for shell productivity - vim and less for in-container editing and inspection - jq and yq for JSON/YAML processing - strace and lsof for low-level diagnostics - iproute2 and netcat-openbsd for network troubleshooting - procps and htop for process monitoring Consolidate build-time dependencies into a dedicated virtual package (.dev-build-deps) for cleaner installation and easier cleanup. --- Dockerfile | 15 +++++++++++++-- 1 file changed, 13 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index da8a367..89f76e7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -117,7 +117,7 @@ RUN set -eux; \ apk add --no-cache bash shadow su-exec tini; \ \ # Network / TLS - apk add --no-cache git curl wget ca-certificates openssl; \ + apk add --no-cache git curl wget ca-certificates openssl make; \ \ # Misc runtime libs apk add --no-cache gettext tzdata pcre2 zlib p7zip; \ @@ -504,7 +504,18 @@ RUN set -eux; \ echo "Setting up development environment..."; \ \ # 1. Install runtime dev tools (kept after build) - apk add --no-cache procps htop; \ + apk add --no-cache \ + procps \ + htop \ + bash-completion \ + vim \ + less \ + jq \ + yq \ + strace \ + lsof \ + iproute2 \ + netcat-openbsd; \ \ # 2. Install ALL build-time dependencies as a single virtual package apk add --no-cache --virtual .dev-build-deps \