diff --git a/.npmrc b/.npmrc new file mode 100644 index 000000000..97b895e2f --- /dev/null +++ b/.npmrc @@ -0,0 +1 @@ +ignore-scripts=true diff --git a/front-end.Dockerfile b/front-end.Dockerfile index d93ec0bea..0f01b7daa 100644 --- a/front-end.Dockerfile +++ b/front-end.Dockerfile @@ -4,6 +4,7 @@ WORKDIR /app COPY front-end/ . +COPY .npmrc . RUN npm install EXPOSE 8505