Skip to content

Commit

Permalink
Update to build dyalog/jarvis container using v19.0 (#69)
Browse files Browse the repository at this point in the history
  • Loading branch information
bpbecker authored Jul 18, 2024
1 parent 8ca3522 commit 08e29b2
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 5 deletions.
9 changes: 7 additions & 2 deletions CI/CI.md
Original file line number Diff line number Diff line change
@@ -1,2 +1,7 @@
### Jarvis Continuous Integration
This folder will contain files related to the building and testing of draft releases of Jarvis.
## Jarvis Continuous Integration
This folder will contain files related to the building and testing of draft releases of Jarvis.

### Updating the Docker container to use a new Dyalog APL version
1. Ensure there's a public Docker container for the Dyalog version.<br>[Check the tags for the dyalog/dyalog container.](https://hub.docker.com/r/dyalog/dyalog/tags)
2. Modify the FROM statement in the Dockerfile file to use the new Dyalog version
3. Modify the "export DYALOG" and "export WSPATH" statements in the entrypoint file in the Docker folder to use the new Dyalog version
4 changes: 2 additions & 2 deletions Docker/entrypoint
Original file line number Diff line number Diff line change
Expand Up @@ -18,8 +18,8 @@ export JARVIS=/opt/mdyalog/Jarvis
export DYALOG_JARVIS_THREAD=${DYALOG_JARVIS_THREAD-1}
export DYALOG_JARVIS_PORT=${DYALOG_JARVIS_PORT-8080}
export MAXWS=${MAXWS-256M}
export DYALOG=/opt/mdyalog/18.2/64/unicode/
export WSPATH=/opt/mdyalog/18.2/64/unicode/ws
export DYALOG=/opt/mdyalog/19.0/64/unicode/
export WSPATH=/opt/mdyalog/19.0/64/unicode/ws
export TERM=dumb
export APL_TEXTINAPLCORE=${APL_TEXTINAPLCORE-1}
export TRACE_ON_ERROR=${TRACE_ON_ERROR-0}
Expand Down
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM dyalog/dyalog:18.2
FROM dyalog/dyalog:19.0
USER root

ADD . /opt/mdyalog/Jarvis
Expand Down

0 comments on commit 08e29b2

Please sign in to comment.