From df2d29a6a121559ab06ccc1bdb86ab68769dea58 Mon Sep 17 00:00:00 2001 From: Jamie Land Date: Mon, 14 Oct 2024 20:09:32 -0400 Subject: [PATCH] Updating container file to include srdv --- Containerfile | 6 ++++++ 1 file changed, 6 insertions(+) diff --git a/Containerfile b/Containerfile index ccbda4c..1b9b83c 100644 --- a/Containerfile +++ b/Containerfile @@ -9,6 +9,12 @@ COPY package*.json ./ # Create .cache directories USER root +# Install npm +RUN microdnf install -y npm + +# Install srdv +RUN npm install -g snyk-resolve-deps + # Expose the port the app will run on USER 1001