Skip to content

Commit

Permalink
Release v0.2
Browse files Browse the repository at this point in the history
  • Loading branch information
alexanderkiel committed Apr 28, 2019
1 parent 83627f0 commit 1ec32ec
Show file tree
Hide file tree
Showing 3 changed files with 4 additions and 4 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -7,11 +7,11 @@ RUN lein uberjar

FROM openjdk:8u201-jre-alpine3.9

COPY --from=build /build/target/life-fhir-store-0.2-SNAPSHOT-standalone.jar /app/
COPY --from=build /build/target/life-fhir-store-0.2-standalone.jar /app/
COPY fhir /app/fhir/

WORKDIR /app

EXPOSE 80

CMD ["/bin/sh", "-c", "java $JVM_OPTS -jar life-fhir-store-0.2-SNAPSHOT-standalone.jar"]
CMD ["/bin/sh", "-c", "java $JVM_OPTS -jar life-fhir-store-0.2-standalone.jar"]
2 changes: 1 addition & 1 deletion docker-compose.yml
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ services:
volumes:
- "db-data:/data"
store:
image: "liferesearch/life-fhir-store:latest"
image: "liferesearch/life-fhir-store:0.2"
environment:
DATABASE_URI: "datomic:free://db:4334/dev?password=datomic"
STRUCTURE_DEFINITIONS_PATH: "/app/fhir/r4"
Expand Down
2 changes: 1 addition & 1 deletion project.clj
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
(defproject life-fhir-store "0.2-SNAPSHOT"
(defproject life-fhir-store "0.2"
:description "A FHIR Store with internal, fast CQL Evaluation Engine"
:url "https://github.com/life-research/life-fhir-store"

Expand Down

0 comments on commit 1ec32ec

Please sign in to comment.