Skip to content
This repository was archived by the owner on Dec 6, 2025. It is now read-only.
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 Dockerfile.apisix
Original file line number Diff line number Diff line change
Expand Up @@ -16,7 +16,7 @@ RUN wget -q -O hivemind.gz https://github.com/DarthSim/hivemind/releases/downloa
# get daprd
RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd

FROM apache/apisix:3.11.0-debian
FROM apache/apisix:3.14.1-debian
USER root
ENV DAPR_APP_ID=gateway
# DAPR_HTTP_READ_BUFFER_SIZE: default 4KB
Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.service
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
#
# pull deps
#
FROM debian:12.8 AS deps
FROM debian:12.12 AS deps


# renovate: datasource=github-releases depName=golang-migrate/migrate
Expand All @@ -21,7 +21,7 @@ RUN wget -q https://github.com/golang-migrate/migrate/releases/download/v$MIGRAT
# builder builds a go service
# the build args SERVICE and VERSION must be set!

FROM golang:1.23-bookworm AS builder
FROM golang:1.25-bookworm AS builder

#
# build spice helper (for migrations)
Expand Down Expand Up @@ -59,7 +59,7 @@ RUN mkdir -p migrations

RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app .

FROM alpine:3.21.0 AS production
FROM alpine:3.23.0 AS production

RUN apk update && apk add postgresql-client --no-cache

Expand Down
6 changes: 3 additions & 3 deletions Dockerfile.standalone
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@
# builder builds a go service
# the build args SERVICE and VERSION must be set!

FROM golang:1.23-bookworm AS builder
FROM golang:1.25-bookworm AS builder

#
# build spice helper (for migrations)
Expand Down Expand Up @@ -42,7 +42,7 @@ RUN mkdir -p migrations

RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app .

FROM debian:12.8 AS deps
FROM debian:12.12 AS deps

# renovate: datasource=github-releases depName=DarthSim/hivemind
ARG HIVEMIND_VERSION=1.1.0
Expand All @@ -65,7 +65,7 @@ RUN wget -q https://github.com/golang-migrate/migrate/releases/download/v$MIGRAT
# get daprd
RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd

FROM alpine:3.21.0 AS production
FROM alpine:3.23.0 AS production

RUN apk update && apk add postgresql-client --no-cache

Expand Down
2 changes: 1 addition & 1 deletion images/dev-go/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -5,7 +5,7 @@

# based on the debian 12 ("bookworm") go image
# for now this only builds x86_64 images (TODO)
FROM golang:1.23-bookworm
FROM golang:1.25-bookworm

# appearently this is not set by the go image
ENV GOROOT="/usr/local/go"
Expand Down
Loading