From cb2398f872ad1cb9181e36b7731511747c110526 Mon Sep 17 00:00:00 2001 From: Adrian Priestley Date: Sat, 19 Apr 2025 16:11:15 -0230 Subject: [PATCH] fix(Dockerfile): Update package installations to use latest versions - Remove specific version pins for git and libc6-dev - Ensure compatibility with newer package updates --- Dockerfile | 5 +++-- 1 file changed, 3 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 3abeeb31ba..96483b9479 100644 --- a/Dockerfile +++ b/Dockerfile @@ -27,11 +27,12 @@ WORKDIR /app COPY . . #install requirements +# hadolint ignore=DL3008 RUN apt-get update; \ apt-get install -y --no-install-recommends \ - git=1:2.39.5-0+deb12u1 \ + git \ gcc=4:12.2.0-3 \ - libc6-dev=2.36-9+deb12u9 \ + libc6-dev \ libtk8.6=8.6.13-2 \ g++=4:12.2.0-3; \ apt-get clean; \