From 371d3e245278e415746525445e804680bb467370 Mon Sep 17 00:00:00 2001 From: Shumail Mohyuddin Date: Thu, 13 Jul 2023 14:48:46 +0200 Subject: [PATCH] test: update cache dir permissions for vote-helm-module e2e --- e2e/projects/vote-helm-modules/vote-image/Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/e2e/projects/vote-helm-modules/vote-image/Dockerfile b/e2e/projects/vote-helm-modules/vote-image/Dockerfile index e7a7f61636..f185a7509b 100644 --- a/e2e/projects/vote-helm-modules/vote-image/Dockerfile +++ b/e2e/projects/vote-helm-modules/vote-image/Dockerfile @@ -5,6 +5,7 @@ WORKDIR /app ADD package.json package-lock.json /app/ RUN npm install +RUN mkdir node_modules/.cache && chmod -R 777 node_modules/.cache ADD . /app CMD ["npm", "run", "serve"]