Skip to content
This repository has been archived by the owner on Jun 14, 2018. It is now read-only.

Commit

Permalink
Added docker build to CircleCI
Browse files Browse the repository at this point in the history
  • Loading branch information
David Smith committed Apr 3, 2018
1 parent 92e0005 commit 9993554
Showing 1 changed file with 19 additions and 2 deletions.
21 changes: 19 additions & 2 deletions .circleci/config.yml
Original file line number Diff line number Diff line change
Expand Up @@ -7,7 +7,6 @@ jobs:
environment:
CIRCLE_TEST_REPORTS: /tmp/test-reports
CIRCLE_ARTIFACTS: /tmp/artifacts

steps:
- checkout
- run:
Expand Down Expand Up @@ -41,4 +40,22 @@ jobs:
path: /tmp/test-reports
- store_artifacts:
path: /tmp/artifacts
destination: build
destination: build
docker_build:
working_directory: /concept-ingester
docker:
- image: docker:18.03
steps:
- checkout
- setup_docker_engine
- run:
name: Build Dockerfile
command: docker build .
workflows:
version: 2
tests_and_docker:
jobs:
- build
- docker_build:
requires:
- build

0 comments on commit 9993554

Please sign in to comment.