From 430acf434bc8967bf8c36f24b5eed21be7614b49 Mon Sep 17 00:00:00 2001 From: "github-actions[bot]" <41898282+github-actions[bot]@users.noreply.github.com> Date: Sat, 15 Aug 2026 19:18:31 +0000 Subject: [PATCH] chore: release v0.25.2 --- CHANGELOG.md | 9 +++++++++ README.md | 8 ++++---- 2 files changed, 13 insertions(+), 4 deletions(-) diff --git a/CHANGELOG.md b/CHANGELOG.md index 1583366..28fc342 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.25.2] - 2026-08-15 + +### 🐛 Fixed + +- Disable UPX by @powerman in [#397] + +[0.25.2]: https://github.com/powerman/dockerize/compare/v0.25.1..v0.25.2 +[#397]: https://github.com/powerman/dockerize/pull/397 + ## [0.25.1] - 2026-07-12 ### 📦️ Dependencies diff --git a/README.md b/README.md index 7f3799a..5180d6a 100644 --- a/README.md +++ b/README.md @@ -106,14 +106,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.25.1/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize +curl -sfL https://github.com/powerman/dockerize/releases/download/v0.25.2/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.25.1/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize +wget -O - https://github.com/powerman/dockerize/releases/download/v0.25.2/dockerize-v0.22.2-linux-amd64 | install /dev/stdin /usr/local/bin/dockerize ``` ### Docker Installation @@ -127,7 +127,7 @@ there are two recommended approaches: and available for all supported platforms: ```dockerfile - FROM powerman/dockerize:0.25.1 + FROM powerman/dockerize:0.25.2 ... ENTRYPOINT dockerize ... ``` @@ -136,7 +136,7 @@ there are two recommended approaches: using multi-stage build: ```dockerfile - FROM powerman/dockerize:0.25.1 AS dockerize + FROM powerman/dockerize:0.25.2 AS dockerize FROM node:18-slim ... COPY --from=dockerize /usr/local/bin/dockerize /usr/local/bin/