https://github.com/hubgit/docker-saxon-he
A Docker image containing Saxon-HE and the Apache resolver.
https://github.com/hubgit/docker-saxon-he
Last synced: 11 days ago
JSON representation
A Docker image containing Saxon-HE and the Apache resolver.
- Host: GitHub
- URL: https://github.com/hubgit/docker-saxon-he
- Owner: hubgit
- License: mit
- Created: 2019-04-11T11:46:27.000Z (almost 7 years ago)
- Default Branch: master
- Last Pushed: 2019-09-09T21:21:14.000Z (over 6 years ago)
- Last Synced: 2025-06-20T23:08:42.226Z (8 months ago)
- Language: Dockerfile
- Size: 1.95 KB
- Stars: 1
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE.txt
Awesome Lists containing this project
README
# docker-saxon-he
A Docker image containing Saxon-HE and the Apache resolver.
The [source code for Saxon-HE/C](https://www.saxonica.com/saxon-c/index.xml) is licensed under the Mozilla Public License Version 2.0.
The Apache Resolver is licensed under the [Apache License Version 2.0](http://www.apache.org/licenses/LICENSE-2.0).
## Usage example
```bash
docker run --rm --mount type=bind,source="$(pwd)",target=/data hubdock/saxon-he net.sf.saxon.Transform \
-s:"/data/input.xml" \
-xsl:"/data/xsl/transform.xsl" \
-o:"/data/output.xml" \
-dtd:on \
-l:on \
-catalog:"/data/catalog.xml"
```