File tree 3 files changed +6
-6
lines changed
3 files changed +6
-6
lines changed Original file line number Diff line number Diff line change 4
4
# builder builds a go service
5
5
# the build args SERVICE and VERSION must be set!
6
6
7
- FROM golang:1.23 -bookworm AS builder
7
+ FROM golang:1.24 -bookworm AS builder
8
8
9
9
ARG SERVICE
10
10
ARG VERSION
@@ -25,7 +25,7 @@ RUN mkdir -p migrations
25
25
26
26
RUN CGO_ENABLED =0 GOOS =linux go build -ldflags ="-X main.Version=${VERSION}" -a -o app .
27
27
28
- FROM alpine:3.21.0 AS production
28
+ FROM alpine:3.21.3 AS production
29
29
30
30
WORKDIR /app
31
31
Original file line number Diff line number Diff line change 4
4
# builder builds a go service
5
5
# the build args SERVICE and VERSION must be set!
6
6
7
- FROM golang:1.23 -bookworm AS builder
7
+ FROM golang:1.24 -bookworm AS builder
8
8
9
9
#
10
10
# build spice helper (for migrations)
@@ -42,7 +42,7 @@ RUN mkdir -p migrations
42
42
43
43
RUN CGO_ENABLED=0 GOOS=linux go build -ldflags="-X main.Version=${VERSION}" -a -o app .
44
44
45
- FROM debian:12.8 AS deps
45
+ FROM debian:12.10 AS deps
46
46
47
47
# renovate: datasource=github-releases depName=DarthSim/hivemind
48
48
ARG HIVEMIND_VERSION=1.1.0
@@ -65,7 +65,7 @@ RUN wget -q https://github.com/golang-migrate/migrate/releases/download/v$MIGRAT
65
65
# get daprd
66
66
RUN wget -q https://github.com/dapr/dapr/releases/download/v$DAPR_VERSION/daprd_linux_amd64.tar.gz -O - | tar -xzvf - daprd
67
67
68
- FROM alpine:3.21.0 AS production
68
+ FROM alpine:3.21.3 AS production
69
69
70
70
RUN apk update && apk add postgresql-client --no-cache
71
71
Original file line number Diff line number Diff line change 5
5
6
6
# based on the debian 12 ("bookworm") go image
7
7
# for now this only builds x86_64 images (TODO)
8
- FROM golang:1.23 -bookworm
8
+ FROM golang:1.24 -bookworm
9
9
10
10
# appearently this is not set by the go image
11
11
ENV GOROOT="/usr/local/go"
You can’t perform that action at this time.
0 commit comments