Skip to content

Commit 053223b

Browse files
committed
docs: Update Go version references in docs to 1.26.2
1 parent d9a1d71 commit 053223b

2 files changed

Lines changed: 3 additions & 3 deletions

File tree

docs/guides/new-bian-service-checklist.md

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -604,7 +604,7 @@ Create a multi-stage Docker build.
604604

605605
```dockerfile
606606
# Stage 1: Build
607-
FROM golang:1.26.0-bookworm AS builder
607+
FROM golang:1.26.2-bookworm AS builder
608608

609609
ARG VERSION=dev
610610
ARG COMMIT=unknown

docs/skills/docker.md

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -21,7 +21,7 @@ This document describes the Docker setup for Meridian, optimized for production
2121

2222
Meridian uses a multi-stage Docker build to create minimal, secure production images:
2323

24-
- **Build stage**: golang:1.26.0-bookworm for compiling static binaries
24+
- **Build stage**: golang:1.26.2-bookworm for compiling static binaries
2525
- **Runtime stage**: gcr.io/distroless/static:nonroot for minimal attack surface
2626
- **Image size**: ~3-5MB (binary: 1.4MB + distroless base: ~2MB)
2727
- **Security**: Non-root user, no shell, minimal dependencies
@@ -64,7 +64,7 @@ docker build \
6464
### Multi-Stage Build
6565

6666
1. **Builder Stage**
67-
- Base: `golang:1.26.0-bookworm`
67+
- Base: `golang:1.26.2-bookworm`
6868
- Installs: git, ca-certificates, tzdata
6969
- Compiles: Static binary with CGO disabled
7070
- Optimizations: `-ldflags="-w -s"` for stripped, reduced size

0 commit comments

Comments
 (0)