From 7a51251623bcf75fd72d2b7b085a4100966458c0 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Tue, 7 Apr 2026 12:52:24 +0000 Subject: [PATCH] chore: release v0.24.4 --- CHANGELOG.md | 4 ++++ README.md | 8 ++++---- 2 files changed, 8 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 7c6578f..c4bc8d9 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,10 @@ All notable changes to this project will be documented in this file. The format is based on [Keep a Changelog](https://keepachangelog.com/en/1.1.0/), and this project adheres to [Semantic Versioning](https://semver.org/spec/v2.0.0.html). +## [0.24.4] - 2026-04-07 + +[0.24.4]: https://github.com/powerman/dockerize/compare/v0.24.3..v0.24.4 + ## [0.24.3] - 2026-04-07 ### 📦️ Dependencies diff --git a/README.md b/README.md index 0b7425d..ca532db 100644 --- a/README.md +++ b/README.md @@ -107,14 +107,14 @@ and then install (replace `linux-amd64` with your platform from the table above): ```sh -curl -sfL https://github.com/powerman/dockerize/releases/download/v0.24.3/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize +curl -sfL https://github.com/powerman/dockerize/releases/download/v0.24.4/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize ``` If `curl` is not available (e.g. busybox base image) then you can use `wget`: ```sh -wget -O - https://github.com/powerman/dockerize/releases/download/v0.24.3/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize +wget -O - https://github.com/powerman/dockerize/releases/download/v0.24.4/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize ``` ### Docker Installation @@ -128,7 +128,7 @@ there are two recommended approaches: and available for all supported platforms: ```dockerfile - FROM powerman/dockerize:0.24.3 + FROM powerman/dockerize:0.24.4 ... ENTRYPOINT dockerize ... ``` @@ -137,7 +137,7 @@ there are two recommended approaches: using multi-stage build: ```dockerfile - FROM powerman/dockerize:0.24.3 AS dockerize + FROM powerman/dockerize:0.24.4 AS dockerize FROM node:18-slim ... COPY --from=dockerize /usr/local/bin/dockerize /usr/local/bin/