From db4806b7d2dae3b0e829f1631c124a1194f8086c Mon Sep 17 00:00:00 2001 From: Bertrand Benjamin Date: Thu, 8 Jun 2023 15:10:03 +0200 Subject: [PATCH] Fix(front): yarn.json to yarn.lock... --- front/Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/front/Dockerfile b/front/Dockerfile index e02c1d0..0f9fd4d 100644 --- a/front/Dockerfile +++ b/front/Dockerfile @@ -8,7 +8,7 @@ FROM node-base as node-prepared RUN npm install @vue/cli@5.0.8 -g COPY package.json . -COPY yarn.json . +COPY yarn.lock . RUN yarn install FROM node-prepared as vue-set