From 3946e78dbf36e9a63500bc1fa18c10ef41cc2436 Mon Sep 17 00:00:00 2001 From: alexm Date: Wed, 5 Feb 2025 08:45:41 +0100 Subject: [PATCH] test: refs #6695 better Dockerfile.e2e --- Dockerfile.e2e | 10 +++------- 1 file changed, 3 insertions(+), 7 deletions(-) diff --git a/Dockerfile.e2e b/Dockerfile.e2e index 5210ebae4..a7da3f17f 100644 --- a/Dockerfile.e2e +++ b/Dockerfile.e2e @@ -25,14 +25,10 @@ RUN apt-get -y --fix-missing update && \ WORKDIR /app -COPY \ - package.json \ - .npmrc \ - pnpm-lock.yaml \ - ./ +COPY package.json .npmrc pnpm-lock.yaml ./ +COPY node_modules ./node_modules -RUN pnpm install && \ - pnpm install -g @quasar/cli@2.2.1 && \ +RUN pnpm install --frozen-lockfile && \ pnpm install cypress && \ npx cypress install