4.0.0
4.0.0 (2024-01-09)
Bug Fixes
-
bulk-model-sync-gradle: deprecate registerLanguage (533db0d)
-
feat(model-server)!: Use ENTRYPOINT instead of CMD in the provided Docker image (63da264)
BREAKING CHANGES
- The previous entry point was the default
ENTRYPOINT ["/bin/sh", "-c"]
.
Now it isENTRYPOINT ["./run-model-server.sh"]
.
If you useddocker run modelix/model-server ./run-model-server.sh <args>
to pass arguments,
you now have to usedocker run modelix/model-server <args>
.
If you used any other process, you now have to override the entry point with the--entrypoint
option.
See https://docs.docker.com/engine/reference/run/#entrypoint-default-command-to-execute-at-runtime