From 6526f810316039ab995a6b825a81c76bbc4576df Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Mon, 13 Oct 2025 09:41:04 +0000 Subject: [PATCH] chore: release v0.24.1 --- CHANGELOG.md | 9 +++++++++ README.md | 8 ++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 0b77f61..1f2ac26 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -5,6 +5,15 @@ 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.1] - 2025-10-13 + +### 📦️ Dependencies + +- **(deps)** Bump alpine from 3.22.1 to 3.22.2 by @dependabot[bot] in [#363] + +[0.24.1]: https://github.com/powerman/dockerize/compare/v0.24.0..v0.24.1 +[#363]: https://github.com/powerman/dockerize/pull/363 + ## [0.24.0] - 2025-08-24 ### 🚀 Added diff --git a/README.md b/README.md index 4e0f761..d20700c 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.0/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize +curl -sfL https://github.com/powerman/dockerize/releases/download/v0.24.1/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.0/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize +wget -O - https://github.com/powerman/dockerize/releases/download/v0.24.1/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.0 + FROM powerman/dockerize:0.24.1 ... ENTRYPOINT dockerize ... ``` @@ -137,7 +137,7 @@ there are two recommended approaches: using multi-stage build: ```dockerfile - FROM powerman/dockerize:0.24.0 AS dockerize + FROM powerman/dockerize:0.24.1 AS dockerize FROM node:18-slim ... COPY --from=dockerize /usr/local/bin/dockerize /usr/local/bin/