diff --git a/.circleci/config.yml b/.circleci/config.yml index d2cab3b..03908fc 100644 --- a/.circleci/config.yml +++ b/.circleci/config.yml @@ -125,6 +125,3 @@ workflows: - lint - test-ci - test-e2e - - - diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..1e27530 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,7 @@ +FROM node:latest + +COPY . . + +RUN yarn install + +ENTRYPOINT [ "yarn", "start" ] \ No newline at end of file