5 lines
128 B
Docker
5 lines
128 B
Docker
FROM docker.io/ubuntu:latest
|
|
WORKDIR /build
|
|
RUN apt update && apt install sbcl -y
|
|
CMD sbcl --load /build/build_linux/build.lisp
|