From cfcaafffd64e4e3cacba77265516f62ceb199d80 Mon Sep 17 00:00:00 2001 From: Kelly Thomas Reardon Date: Sat, 16 May 2026 23:23:22 -0500 Subject: [PATCH] resolving issues #4 and #5 - security findings --- Dockerfile | 10 +++++++++- 1 file changed, 9 insertions(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 3b3d298..284b3f1 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,4 +1,12 @@ -FROM mcr.microsoft.com/powershell +FROM mcr.microsoft.com/powershell:7.5-ubuntu-24.04 + +USER root + +RUN apt-get update \ + && apt-get install -y --no-install-recommends tzdata \ + && apt-get dist-upgrade -y \ + && apt-get clean \ + && rm -rf /var/lib/apt/lists/* USER 1000:1000