A Dockerfile describing an container capable of executing s source files.
git clone https://github.com/docker-exec/racket.git
docker build -t dexec/lang-racket .
In a directory containing a script e.g. foo.rkt, run:
docker run -t --rm \
-v $(pwd -P)/foo.rkt:/tmp/dexec/build/foo.rkt \
dexec/lang-racket foo.rkt
Arguments can be passed to the script using any of the following forms:
-a argument
--arg argument
--arg=argument
Each argument passed must be prefixed in this way, e.g.
docker run -t --rm \
-v $(pwd -P)/foo.rkt:/tmp/dexec/build/foo.rkt \
dexec/lang-racket foo.rkt \
--arg='hello world' \
--arg=foo \
--arg=bar