-
Notifications
You must be signed in to change notification settings - Fork 1
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Merge pull request #180 from fhir-fi/build_updates
Build updates 👷
- Loading branch information
Showing
6 changed files
with
13 additions
and
18 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file was deleted.
Oops, something went wrong.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -54,10 +54,10 @@ See also the repo for | |
|
||
### Required Tools | ||
* NodeJS 18 | ||
* Java 17 | ||
* Java 21 | ||
* Jekyll (ruby) | ||
|
||
Or you can use Docker, see [Dockerfile](Dockerfile). | ||
Or you can use Docker, see [compose file](docker-compose.yml). | ||
|
||
### Quick Start | ||
|
||
|
@@ -66,14 +66,14 @@ With the above requirements installed locally, run | |
#### On OSX, Linux, or Unix | ||
|
||
``` bash | ||
npm install -g fsh-sushi@3.3.3 | ||
npm install -g fsh-sushi | ||
./_updatePublisher.sh --yes | ||
./_genonce.sh | ||
``` | ||
|
||
#### On Windows | ||
``` | ||
npm install -g fsh-sushi@3.3.3 | ||
npm install -g fsh-sushi | ||
.\_updatePublisher.bat --yes | ||
.\_genonce.bat | ||
``` | ||
|
@@ -83,10 +83,12 @@ npm install -g [email protected] | |
Run | ||
|
||
``` bash | ||
docker-compose run runner bash -c "cd /workdir && ./_updatePublisher.sh --yes" | ||
docker-compose run runner bash -c "cd /workdir && ./_genonce.sh" | ||
docker compose run runner bash -c "./_updatePublisher.sh --yes" | ||
docker compose run runner bash -c "./_genonce.sh" | ||
``` | ||
|
||
> Switched to hl7fhir/ig-publisher-base image, remove temporary files in your working copy when switching from older image. | ||
#### Results | ||
|
||
The implementation guide will be generated to the `output/` directory. |
Empty file.
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,8 +1,6 @@ | ||
version: '3.7' | ||
services: | ||
runner: | ||
build: | ||
context: . | ||
dockerfile: Dockerfile | ||
image: hl7fhir/ig-publisher-base:latest | ||
volumes: | ||
- ./:/workdir | ||
- ./:/home/publisher/ig |