SBCL (Steel Bank Common Lisp) with Arch Linux as the OS.
1.0K
Includes the Quicklisp install.
Sample usage:
docker run --security-opt seccomp=unconfined \
--rm -t ahungry/sbcl sbcl --noinform --non-interactive \
--eval '(print "Hello World")'
Or, you could run against your own local Common Lisp code by doing a similar command and mounting your drives.
docker run --security-opt seccomp=unconfined \
-v~/quicklisp/local-projects:~/quicklisp/local-projects \
--rm -it ahungry/sbcl
The security opt is required or SBCL will complain about /proc /setuid in some error output (but mostly still work) as SBCL tries to do some stuff with overriding memory randomness (why we must seed our randoms each time in CL).
Content type
Image
Digest
Size
216.3 MB
Last updated
over 6 years ago
docker pull ahungry/sbcl