From 82927228e563f0f29afea53e507c69baa92cbe32 Mon Sep 17 00:00:00 2001 From: gunnsteingarmo Date: Thu, 18 Jul 2024 14:13:34 +0200 Subject: [PATCH] =?UTF-8?q?Skal=20kopiere=20yarn=20lock.=20Skal=20kj=C3=B8?= =?UTF-8?q?re=20yarn=20install=20for=20=C3=A5=20installere=20avhengigheter?= MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit --- Dockerfile | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/Dockerfile b/Dockerfile index 16302d1a4..cf497edaf 100644 --- a/Dockerfile +++ b/Dockerfile @@ -2,8 +2,8 @@ FROM node:18-alpine as builder WORKDIR /app COPY package.json . -COPY package-lock.json . -RUN npm install +COPY yarn.json . +RUN yarn install COPY . .