Sign inSign up

beeceej/ccl

By beeceej

Updated about 8 years ago

Image
0

88

beeceej/ccl repository overview

ccl-docker This Dockerfile allows access to the clozure common lisp tool (ccl64)

Usage $ docker build -t ccl:1.11.5 .

Lisp Interpreter Session $ docker run -it ccl:1.11.5 <- Will drop you into a LISP interpreter session

to quit you may enter (quit)

Shell Session with CCL installed $ docker run -it --entrypoint /bin/sh ccl:1.11.5 <- Will drop you into a shell session with ccl installed

$ /ccl64 <- will drop you into the lisp interpreter session

Run a LISP program in the container $ docker run -it -v ${PWD}:${PWD} -w ${PWD} ccl:1.11.5 --load ${PWD}/main.cl --eval '(ccl:quit)' -- $argv

Tag summary

Content type

Image

Digest

Size

158.3 MB

Last updated

about 8 years ago

docker pull beeceej/ccl:1.11.5