Skip to content
Open
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
9 changes: 9 additions & 0 deletions CHANGELOG.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down
8 changes: 4 additions & 4 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand All @@ -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 ...
```
Expand All @@ -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/
Expand Down
Loading