From b4cdc7628dc18eaabab8c8b247ccb8efba40b36f Mon Sep 17 00:00:00 2001 From: Mariano Cano Date: Fri, 10 Nov 2023 13:14:01 -0800 Subject: [PATCH] Use the same version of debian This commit fixes a glibc incompatibility when compiling CGO code with debian bookworm and running it in debian bullseye. We are not upgrading this to bookworm yet, because other docker images like the one for step-ca are still in bullseye and they depend on this. --- docker/Dockerfile.debian | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/docker/Dockerfile.debian b/docker/Dockerfile.debian index dea2cbe..858eccd 100644 --- a/docker/Dockerfile.debian +++ b/docker/Dockerfile.debian @@ -1,4 +1,4 @@ -FROM golang AS builder +FROM golang:bullseye AS builder WORKDIR /src COPY . .