Skip to content
Merged
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
4 changes: 2 additions & 2 deletions initrd.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@ RUN ./autogen.sh && ./configure --enable-static-programs=sfdisk && make
RUN strip --strip-all sfdisk.static

# Build BOOTy as an init
FROM golang:1.26.5-alpine AS dev
FROM golang:1.26.6-alpine AS dev
ARG BOOTY_VERSION=dev
ARG BOOTY_BUILD=unknown
ARG BOOTY_FLAVOR=full
Expand Down Expand Up @@ -630,7 +630,7 @@ FROM scratch AS gobgp-iso
COPY --from=gobgp-iso-builder /booty-gobgp.iso .

# ── Micro target: pure-Go BOOTy only, no external binaries ────────────────
FROM golang:1.26.5-bookworm AS micro-dev
FROM golang:1.26.6-bookworm AS micro-dev
ARG BOOTY_VERSION=dev
ARG BOOTY_BUILD=unknown
ARG BOOTY_FLAVOR=micro
Expand Down
2 changes: 1 addition & 1 deletion test/e2e/clab/vrnetlab/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@
# Build: docker build -t booty-vrnetlab:latest -f test/e2e/clab/vrnetlab/Dockerfile .

# ── Stage 1: Build BOOTy static binary ────────────────────────────────
FROM golang:1.26.5-alpine AS builder
FROM golang:1.26.6-alpine AS builder
RUN set -eu; \
n=0; \
until apk add --no-cache git ca-certificates gcc linux-headers musl-dev; do \
Expand Down
Loading