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
2 changes: 1 addition & 1 deletion docker/Dockerfile.backend
Original file line number Diff line number Diff line change
@@ -1,5 +1,5 @@
# Build stage: server binary + palette-indexer + deterministic palette.db
FROM golang:1.26.3-alpine AS builder
FROM golang:1.26.4-alpine AS builder

ARG SERVICE_CMD=./cmd/server

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.backend-spiffe
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@ FROM ghcr.io/spiffe/spire-agent:1.15.0 AS spire-agent
FROM ghcr.io/spiffe/spire-server:1.15.0 AS spire-server

# Build backend
FROM golang:1.26.3-alpine AS backend-builder
FROM golang:1.26.4-alpine AS backend-builder

ARG SERVICE_CMD=./cmd/server

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.demo-client
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# - Makes mTLS calls to other services
# - Demonstrates JWT-SVID API authentication

FROM golang:1.26.3-alpine AS builder
FROM golang:1.26.4-alpine AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.demo-service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# - Validates incoming JWT-SVIDs
# - Shows certificate rotation in action

FROM golang:1.26.3-alpine AS builder
FROM golang:1.26.4-alpine AS builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.fly
Original file line number Diff line number Diff line change
Expand Up @@ -27,7 +27,7 @@ RUN npm run build
# ============================================
# Stage 2: Build Backend + palette index
# ============================================
FROM golang:1.26.3-alpine AS backend-builder
FROM golang:1.26.4-alpine AS backend-builder

WORKDIR /app

Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.spire-server.fly
Original file line number Diff line number Diff line change
Expand Up @@ -9,7 +9,7 @@
FROM ghcr.io/spiffe/spire-server:1.15.0 AS spire-base

# Build health check server
FROM golang:1.26.3-alpine AS health-builder
FROM golang:1.26.4-alpine AS health-builder
WORKDIR /app
COPY docker/spire/server-fly/health-server.go .
RUN CGO_ENABLED=0 go build -o health-server health-server.go
Expand Down
2 changes: 1 addition & 1 deletion docker/Dockerfile.wallet-harness
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ COPY wallet-ui/ ./wallet-ui/
RUN mkdir -p /repo/backend/cmd/walletharness/static
RUN cd wallet-ui && npm run build

FROM golang:1.26.3-alpine AS builder
FROM golang:1.26.4-alpine AS builder

WORKDIR /app

Expand Down
Loading