From c41e7ee63d72824fcf37988e6e354417cec31852 Mon Sep 17 00:00:00 2001 From: Fabian Seidl <fabian.seidl@h-da.de> Date: Wed, 12 Jul 2023 15:21:08 +0200 Subject: [PATCH] test controller docker container with bullseye instead of buster --- controller/controller.Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/controller/controller.Dockerfile b/controller/controller.Dockerfile index 881b84320..a2716198d 100644 --- a/controller/controller.Dockerfile +++ b/controller/controller.Dockerfile @@ -2,7 +2,7 @@ ARG GOLANG_VERSION=1.20.6 ARG BUILDARGS ARG $GITLAB_PROXY -FROM ${GITLAB_PROXY}golang:$GOLANG_VERSION-buster as builder +FROM ${GITLAB_PROXY}golang:$GOLANG_VERSION-bullseye as builder WORKDIR /gosdn/ COPY . . RUN --mount=type=cache,target=/root/go/pkg/mod \ -- GitLab