Dockerfile 161 Bytes
Newer Older
1
FROM circleci/node:latest-browsers
陈帅's avatar
陈帅 committed
2 3

WORKDIR /usr/src/app/
陈帅's avatar
陈帅 committed
4
USER root
陈帅's avatar
陈帅 committed
5
COPY package.json ./
陈帅's avatar
陈帅 committed
6
RUN yarn
陈帅's avatar
陈帅 committed
7 8 9

COPY ./ ./

10 11
RUN npm run test:all

陈帅's avatar
陈帅 committed
12
CMD ["npm", "run", "build"]