Skip to content

Commit e44f08d

Browse files
authored
feat: use Debian Trixie as base
1 parent 44edb9c commit e44f08d

File tree

1 file changed

+3
-3
lines changed

1 file changed

+3
-3
lines changed

Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
1-
ARG GO_VERSION=1.20
2-
FROM golang:${GO_VERSION}-bookworm AS builder
1+
ARG GO_VERSION=1.24
2+
FROM golang:${GO_VERSION}-trixie AS builder
33
ARG GO_VERSION
44
ARG LLVM_MINGW64_VER=20241030
55
ARG LLVM_MINGW64_SRC="https://github.com/mstorsjo/llvm-mingw/releases/download"
@@ -11,7 +11,7 @@ COPY --chmod=0755 scripts/setup-llvm-mingw64.sh /tmp/
1111
RUN /tmp/setup-llvm-mingw64.sh
1212

1313
ARG GO_VERSION
14-
FROM golang:${GO_VERSION}-bookworm
14+
FROM golang:${GO_VERSION}-trixie
1515

1616
RUN apt update &&\
1717
apt install \

0 commit comments

Comments
 (0)