Skip to content

Commit 2e8f0f8

Browse files
stoprocentclaude
andauthored
fix(build): upgrade Docker API version in prebuildify-cross patches to v1.44 (#15)
Modern Docker daemons require minimum API version 1.44. The existing patches set v1.24 which is now rejected with "client version 1.24 is too old" errors during ARM cross-compilation in CI. https://claude.ai/code/session_01FSZYySRpD3pb1fTDVS2jYo Co-authored-by: Claude <noreply@anthropic.com>
1 parent 2dca8d8 commit 2e8f0f8

2 files changed

Lines changed: 2 additions & 2 deletions

File tree

patches/@vweevers+docker-pull+1.1.1.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index 67b3e73..bac4a84 100644
77
if (!image) throw new Error('Invalid image')
88

99
- var request = docker({host: opts.host, version: opts.version || 'v1.21'})
10-
+ var request = docker({host: opts.host, version: opts.version || 'v1.24'})
10+
+ var request = docker({host: opts.host, version: opts.version || 'v1.44'})
1111
var that = new events.EventEmitter()
1212
var layers = {}
1313
var progress = {}

patches/docker-run+3.1.0.patch

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ index ea7fc0d..1f08702 100644
77
if (!opts) opts = {}
88

99
- var request = docker(opts.host, {version:'v1.14'})
10-
+ var request = docker(opts.host, {version:'v1.24'})
10+
+ var request = docker(opts.host, {version:'v1.44'})
1111
var that = new events.EventEmitter()
1212
var tty = !!opts.tty
1313

0 commit comments

Comments
 (0)