From 4ba29e4b7bd3fa614e6aa925c0ba3652cf1bb109 Mon Sep 17 00:00:00 2001 From: Arjun Kondur Date: Thu, 14 Nov 2024 19:23:41 -0600 Subject: [PATCH] Test package version --- Dockerfile | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/Dockerfile b/Dockerfile index fb9f06277..67c4b97f8 100644 --- a/Dockerfile +++ b/Dockerfile @@ -36,11 +36,11 @@ ENV OPERATOR=/manager \ # Install necessary packages and configure user RUN if grep -q 'Ubuntu' /etc/os-release; then \ apt-get update && \ - apt-get install -y --no-install-recommends passwd=1:4.8.1-1ubuntu5.20.04 && \ + apt-get install -y --no-install-recommends passwd=1:4.13+dfsg1-4ubuntu3 && \ useradd -ms /bin/bash nonroot -u 1001 && \ - apt-get install -y --no-install-recommends krb5-locales=1.17-6ubuntu4.1 && \ + apt-get install -y --no-install-recommends krb5-locales && \ apt-get upgrade -y && \ - apt-get install -y --no-install-recommends unattended-upgrades=2.3ubuntu0.1 && \ + apt-get install -y --no-install-recommends unattended-upgrades && \ unattended-upgrades -v --security && \ apt-get clean && rm -rf /var/lib/apt/lists/*; \ else \