diff --git a/Dockerfile b/Dockerfile
index 88b5046798182ce34716adc7cd5cedc75075984c..64a1b3ae0ceae9776bf7e2ef69ea0e248e2aa23a 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -2,6 +2,7 @@ FROM node:10.15.3-alpine as build
 WORKDIR /usr/src/app
 ENV PATH /usr/src/app/node_modules/.bin:$PATH
 COPY package*.json ./
+RUN npm config set unsafe-perm true
 RUN npm install
 RUN npm install react-scripts@3.0.1 -g
 COPY . .