dockerfile(gen): update base image to trixie

This commit is contained in:
CrazyMax
2025-12-23 01:17:49 +01:00
parent c7558f2e05
commit 1d67132ca7

View File

@@ -4,7 +4,7 @@ ARG GO_VERSION="1.24"
ARG PROTOC_VERSION="3.17.3"
# protoc is dynamically linked to glibc so can't use alpine base
FROM golang:${GO_VERSION}-bullseye AS base
FROM golang:${GO_VERSION}-trixie AS base
ENV GOFLAGS="-mod=vendor"
RUN apt-get update && apt-get --no-install-recommends install -y git unzip
ARG PROTOC_VERSION