Skip to content
Closed
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 Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# =============================================================================
# Base builder stage
# =============================================================================
FROM golang:1.24.5-alpine AS builder
FROM golang:1.25.1-alpine AS builder

# Install build dependencies
RUN apk --no-cache add ca-certificates git make
Expand All @@ -29,7 +29,7 @@ RUN CGO_ENABLED=0 GOOS=linux go build -a -installsuffix cgo -ldflags="-w -s" -o
# =============================================================================
# Development stage
# =============================================================================
FROM golang:1.24.5-alpine AS development
FROM golang:1.25.1-alpine AS development

# Install development tools
RUN apk --no-cache add ca-certificates curl git make bash
Expand Down