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