one comes before another

This commit is contained in:
Tommy Parnell
2018-09-28 15:45:56 -04:00
parent 736089533b
commit 3abd5818dd

View File

@@ -1,9 +1,9 @@
FROM node:8 as build FROM node:8 as build
WORKDIR /build WORKDIR /build
COPY .bowerrc bower.json ./
RUN npm run bower install
COPY package.json ./ COPY package.json ./
RUN npm install RUN npm install
COPY .bowerrc bower.json ./
RUN npm run bower install
COPY . . COPY . .
RUN npm run pub RUN npm run pub