From 4a2565270cef0e94fd9a951f101e95bf99c7dd3d Mon Sep 17 00:00:00 2001 From: niansa Date: Sun, 7 May 2023 12:59:08 +0200 Subject: [PATCH] Updated Dockerfile to use Debian Bookworm --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 1249e83..6723c33 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ -FROM debian:bullseye -COPY . /app +FROM debian:bookworm +COPY . /app/ RUN cd /app \ && apt update \ && apt -y install git g++ make cmake zlib1g-dev libssl-dev libsqlite3-dev \