From c920d91c9cd4b0dd50c0bfe6404ca18e692b340a Mon Sep 17 00:00:00 2001 From: Kyllian Chabanon Date: Mon, 8 Apr 2024 00:55:24 +0200 Subject: [PATCH] Modifications --- Dockerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index eedece9..b5122cc 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,7 @@ FROM node:latest AS build WORKDIR /app COPY package.json ./ -RUN npm install +RUN yarn install COPY docker ./ RUN npm run build