From b4d6a9366a352a7c60018551bfc44118f20d6114 Mon Sep 17 00:00:00 2001 From: "Gyarbij (Chono N)" <49493993+Gyarbij@users.noreply.github.com> Date: Sat, 22 Jun 2024 17:58:43 +0200 Subject: [PATCH] chore: Update Dockerfile to use Debian bullseye-slim base image --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 01b9c02..21276a7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -6,7 +6,7 @@ COPY . . RUN go build # Final step -FROM debian:buster-slim +FROM debian:bullseye-slim RUN set -x && apt-get update && DEBIAN_FRONTEND=noninteractive apt-get install -y \ ca-certificates && \ rm -rf /var/lib/apt/lists/* \