Skip to content

Commit d8d148a

Browse files
chore(deps): update all non-major dockerfile dependencies
1 parent d2e22f3 commit d8d148a

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

Dockerfile.service

+2-2
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# builder builds a go service
55
# the build args SERVICE and VERSION must be set!
66

7-
FROM golang:1.23-bookworm AS builder
7+
FROM golang:1.24-bookworm AS builder
88

99
ARG SERVICE
1010
ARG VERSION
@@ -25,7 +25,7 @@ RUN mkdir -p migrations
2525

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

28-
FROM alpine:3.21.0 AS production
28+
FROM alpine:3.21.3 AS production
2929

3030
WORKDIR /app
3131

Dockerfile.standalone

+3-3
Original file line numberDiff line numberDiff line change
@@ -4,7 +4,7 @@
44
# builder builds a go service
55
# the build args SERVICE and VERSION must be set!
66

7-
FROM golang:1.23-bookworm AS builder
7+
FROM golang:1.24-bookworm AS builder
88

99
#
1010
# build spice helper (for migrations)
@@ -42,7 +42,7 @@ RUN mkdir -p migrations
4242

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

45-
FROM debian:12.8 AS deps
45+
FROM debian:12.10 AS deps
4646

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

68-
FROM alpine:3.21.0 AS production
68+
FROM alpine:3.21.3 AS production
6969

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

images/dev-go/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@
55

66
# based on the debian 12 ("bookworm") go image
77
# for now this only builds x86_64 images (TODO)
8-
FROM golang:1.23-bookworm
8+
FROM golang:1.24-bookworm
99

1010
# appearently this is not set by the go image
1111
ENV GOROOT="/usr/local/go"

0 commit comments

Comments
 (0)