Skip to content

Commit

Permalink
Add dockerized CQL tools
Browse files Browse the repository at this point in the history
  • Loading branch information
ivan-c committed Jul 30, 2020
1 parent 78e5f7a commit 3cabc47
Show file tree
Hide file tree
Showing 2 changed files with 26 additions and 0 deletions.
17 changes: 17 additions & 0 deletions Dockerfile.cql
Original file line number Diff line number Diff line change
@@ -0,0 +1,17 @@
FROM alpine/git as vcs_checkout

WORKDIR /opt/checkout

RUN git clone https://github.com/cqframework/clinical_quality_language .



FROM openjdk:11 as cql_builder

WORKDIR /opt/app

COPY --from=vcs_checkout /opt/checkout .

WORKDIR Src/java

RUN ./gradlew :cql-to-elm:installDist
9 changes: 9 additions & 0 deletions docker-compose.cql.yaml
Original file line number Diff line number Diff line change
@@ -0,0 +1,9 @@
---
version: "3.4"
services:
cql:
build:
context: .
dockerfile: Dockerfile.cql
volumes:
- ./src/cql:/opt/cql

0 comments on commit 3cabc47

Please sign in to comment.