Skip to content

Commit a475697

Browse files
authored
fix: ensure statically linked builds in releases (#605)
1 parent 00bc407 commit a475697

4 files changed

Lines changed: 19 additions & 1 deletion

File tree

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1 @@
1+
- Ensure binaries included in releases are statically linked. ([#605](https://github.com/noble-assets/noble/pull/605))

.changelog/v11.0.1/summary.md

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -0,0 +1,5 @@
1+
*Oct 21, 2025*
2+
3+
This is a non-consensus breaking patch to the v11 Flux release line.
4+
5+
No core code changes are made in this patch.

CHANGELOG.md

Lines changed: 12 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,17 @@
11
# CHANGELOG
22

3+
## v11.0.1
4+
5+
*Oct 21, 2025*
6+
7+
This is a non-consensus breaking patch to the v11 Flux release line.
8+
9+
No core code changes are made in this patch.
10+
11+
### IMPROVEMENTS
12+
13+
- Ensure binaries included in releases are statically linked. ([#605](https://github.com/noble-assets/noble/pull/605))
14+
315
## v11.0.0
416

517
*Oct 21, 2025*

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -16,7 +16,7 @@ COPY . .
1616
# https://www.docker.com/blog/faster-multi-platform-builds-dockerfile-cross-compilation-guide
1717
ARG TARGETOS TARGETARCH
1818

19-
RUN GOOS=$TARGETOS GOARCH=$TARGETARCH make build
19+
RUN GOOS=$TARGETOS GOARCH=$TARGETARCH LDFLAGS='-extldflags "-static"' make build
2020

2121
FROM alpine:3
2222

0 commit comments

Comments
 (0)