Short Description
DSL platform command line client
Full Description
Run DSL platform offline compiler from Docker container.
For more info: go to https://github.com/ngs-doo/dsl-compiler-client
For command line options, run:
$ docker run --rm dslp/clc -help
Mount your host DSL files to /src/dsl in container. For example, to parse DSLs:
$ docker run --rm -v `pwd`/DSL:/src/dsl dslp/clc -parse
Compile java client:
$ docker run --name clc -v `pwd`/DSL:/src/dsl dslp/clc -target=java_client -download
Copy compiled/downloaded files to host from /src/gen in container:
$ docker cp clc:/src/gen /host/path
Docker Pull Command
Owner
dslp