diff --git a/Dockerfile b/Dockerfile index d30cea6..f6b185d 100644 --- a/Dockerfile +++ b/Dockerfile @@ -1,9 +1,9 @@ FROM node:8 as build WORKDIR /build -COPY .bowerrc bower.json ./ -RUN npm run bower install COPY package.json ./ RUN npm install +COPY .bowerrc bower.json ./ +RUN npm run bower install COPY . . RUN npm run pub