From 88ed7504ed0d3ac55e35dcccc47022fc1cf93e45 Mon Sep 17 00:00:00 2001 From: "Vipul Gupta (@vipulgupta2048)" Date: Sat, 18 May 2024 12:48:55 +0530 Subject: [PATCH] Client: Update alpine packages before installing packages Change-type: patch Signed-off-by: Vipul Gupta (@vipulgupta2048) --- client/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/client/Dockerfile b/client/Dockerfile index 11dc7fca2..ee93d2831 100644 --- a/client/Dockerfile +++ b/client/Dockerfile @@ -2,7 +2,7 @@ FROM node:18.16.0-alpine3.16 WORKDIR /usr/src/app # hadolint ignore=DL3018 -RUN apk add --no-cache bash git +RUN apk update && apk upgrade && apk add --no-cache bash git COPY package* ./ RUN npm ci