you probably want this image. https://github.com/daewok/lisp-devel-docker that is all.
This Dockerfile allows access to the clozure common lisp tool (ccl64)
Docker Hub (https://hub.docker.com/r/beeceej/ccl/)
$ docker build -t ccl:1.11.5 .
$ docker run -it ccl:1.11.5
<- Will drop you into a LISP interpreter session
to quit you may enter (quit)
$ 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
$ docker run -it -v ${PWD}:${PWD} -w ${PWD} ccl:1.11.5 --load ${PWD}/main.cl --eval '(ccl:quit)' -- $argv