Browse Source

Add dockerfile

pull/1/head
anthony 5 years ago
parent
commit
943893ab47
  1. 3
      .circleci/config.yml
  2. 7
      Dockerfile

3
.circleci/config.yml

@ -125,6 +125,3 @@ workflows:
- lint - lint
- test-ci - test-ci
- test-e2e - test-e2e

7
Dockerfile

@ -0,0 +1,7 @@
FROM node:latest
COPY . .
RUN yarn install
ENTRYPOINT [ "yarn", "start" ]
Loading…
Cancel
Save