From 72a80a896f66a56bb00e0a630caf58f2b53c9912 Mon Sep 17 00:00:00 2001 From: Allan Wanderley Date: Fri, 14 Aug 2020 21:49:23 -0300 Subject: [PATCH] Infra: Removed react scripts install --- Dockerfile | 1 - 1 file changed, 1 deletion(-) diff --git a/Dockerfile b/Dockerfile index 00b9807..3fd74f3 100644 --- a/Dockerfile +++ b/Dockerfile @@ -3,7 +3,6 @@ WORKDIR /app ENV PATH /app/node_modules/.bin:$PATH COPY package.json ./ COPY yarn.lock ./ -RUN npm install react-scripts -g RUN yarn install COPY . ./ RUN yarn build