From 46e26da88c504b239e8546fd83aea751bbdecf19 Mon Sep 17 00:00:00 2001 From: rkuo-danswer Date: Thu, 27 Feb 2025 12:05:37 -0800 Subject: [PATCH] fix apt versioning issues (#4151) Co-authored-by: Richard Kuo (Danswer) --- backend/Dockerfile | 14 ++++++++------ 1 file changed, 8 insertions(+), 6 deletions(-) diff --git a/backend/Dockerfile b/backend/Dockerfile index 98280814a1c..9c65ad37027 100644 --- a/backend/Dockerfile +++ b/backend/Dockerfile @@ -28,14 +28,16 @@ RUN apt-get update && \ curl \ zip \ ca-certificates \ - libgnutls30=3.7.9-2+deb12u3 \ - libblkid1=2.38.1-5+deb12u1 \ - libmount1=2.38.1-5+deb12u1 \ - libsmartcols1=2.38.1-5+deb12u1 \ - libuuid1=2.38.1-5+deb12u1 \ + libgnutls30 \ + libblkid1 \ + libmount1 \ + libsmartcols1 \ + libuuid1 \ libxmlsec1-dev \ pkg-config \ - gcc && \ + gcc \ + nano \ + vim && \ rm -rf /var/lib/apt/lists/* && \ apt-get clean