npm: interim net-tools image (thin fork of jc21 2.13.5) for docker exec diagnostics

This commit is contained in:
alexz
2026-06-13 23:17:06 -07:00
parent cc711c89ea
commit 22cca9e08f
5 changed files with 68 additions and 2 deletions

13
apps/npm/build/build.sh Normal file
View File

@@ -0,0 +1,13 @@
#!/bin/bash
# Build & push the INTERIM net-tools NPM image (thin fork of upstream jc21).
# The from-source build (see README) will later supersede this with :2.13.5.
set -euo pipefail
IMAGE_NAME="${IMAGE_NAME:-git.alexzaw.dev/alexz/nginx-proxy-manager}"
IMAGE_TAG="${IMAGE_TAG:-2.13.5-interim}"
cd "$(dirname "$0")"
docker build "$@" -t "${IMAGE_NAME}:${IMAGE_TAG}" .
docker push "${IMAGE_NAME}:${IMAGE_TAG}"
echo "Pushed ${IMAGE_NAME}:${IMAGE_TAG}"