Sword/Dockerfile
smallchill 9401de3ca4 🎉 1.0.0-RC1.
2019-01-01 22:20:57 +08:00

13 lines
161 B
Docker

FROM circleci/node:latest-browsers
WORKDIR /usr/src/app/
USER root
COPY package.json ./
RUN yarn
COPY ./ ./
RUN npm run test:all
CMD ["npm", "run", "build"]