@ -71,6 +71,13 @@ jobs:
command: yarn doc:build
- store_artifacts:
path: docs
build-docker-image:
steps:
- docker/build:
image: app_ci
tag: "latest"
registry: .
workflows:
version: 2
build_and_test:
@ -88,4 +95,9 @@ workflows:
- build
- test1
- test2
- build-docker-image:
requires:
- doc
@ -0,0 +1,7 @@
FROM node:latest
RUN yarn install
ENTRYPOINT [ "yarn", "start" ]