1
0
mirror of https://github.com/chillzhuang/Sword synced 2024-07-04 12:38:14 +08:00
Sword/Dockerfile

13 lines
161 B
Docker
Raw Normal View History

2019-02-13 17:16:39 +08:00
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"]