From aaebdc5da79649842b424967106a80c8f04d695f Mon Sep 17 00:00:00 2001 From: daniel31x13 Date: Fri, 20 Oct 2023 23:06:09 -0400 Subject: [PATCH] minor change to DockerFile --- Dockerfile | 11 +++++++---- 1 file changed, 7 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index c17ccee..290cfb7 100644 --- a/Dockerfile +++ b/Dockerfile @@ -8,10 +8,13 @@ WORKDIR /data COPY ./package.json ./yarn.lock ./playwright.config.ts ./ -RUN yarn && \ - npx playwright install-deps && \ - apt-get clean && \ - yarn cache clean +RUN yarn + +RUN npx playwright install-deps + +RUN apt-get clean + +RUN yarn cache clean COPY . .