From 6d70700ac457e3f7cffd4899404b8f812b0feb8e Mon Sep 17 00:00:00 2001 From: Paulo Castello da Costa Date: Mon, 18 Sep 2023 13:29:01 -0700 Subject: [PATCH] Update runtime image for golang tests to bookworm. (#386) --- containers/pre_built_workers/go/Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/containers/pre_built_workers/go/Dockerfile b/containers/pre_built_workers/go/Dockerfile index 122107fe..0a3b3081 100644 --- a/containers/pre_built_workers/go/Dockerfile +++ b/containers/pre_built_workers/go/Dockerfile @@ -35,11 +35,11 @@ RUN git submodule update --init RUN echo 'COMMIT SHA' > GRPC_GIT_COMMIT.txt RUN git rev-parse $GITREF >> GRPC_GIT_COMMIT.txt -# Build go excutables +# Build go executables RUN go build -o /executable/bin/worker ./benchmark/worker -# Copy go excuatable to a new image -FROM debian:buster +# Copy go executable to a new image +FROM debian:bookworm RUN mkdir -p /executable WORKDIR /executable