From 0c5f9042d009a205ef679c02249e291034b80bf5 Mon Sep 17 00:00:00 2001 From: Alessandro Pomponio <10339005+AlessandroPomponio@users.noreply.github.com> Date: Sat, 16 Sep 2023 15:29:16 +0100 Subject: [PATCH] chore: update to latest debian and tdlib (#1) --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 7ccee8e..822b915 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,5 +1,5 @@ # Pull from debian 10 buster -FROM debian:buster +FROM debian:bookworm # Install dependencies RUN apt update && apt install -y -qq \ @@ -14,7 +14,7 @@ RUN apt update && apt install -y -qq \ # Begin compilation RUN git clone https://github.com/tdlib/td.git; \ cd td; \ - git checkout v1.7.0; \ + git checkout v1.8.0; \ rm -rf build; \ mkdir build; \ cd build; \