changelog shortlog graph tags branches changeset files revisions annotate raw help

Mercurial > demo / Containerfile

changeset 40: 6b652d7d6663
parent: 02aa015bff73
author: Richard Westhaver <ellis@rwest.io>
date: Sun, 14 Apr 2024 20:48:05 -0400
permissions: -rw-r--r--
description: examples
1 FROM clfoundation/sbcl:latest
2 ENV QUICKLISP_ADD_TO_INIT_FILE=true
3 ENV QUICKLISP_DIST_VERSION=latest
4 ENV LISP=sbcl
5 WORKDIR /usr/src/demo
6 COPY . .
7 RUN mkdir -p ~/.config/common-lisp/source-registry.conf.d && \
8  echo '(:tree "/usr/src/demo")' > ~/.config/common-lisp/source-registry.conf.d/workspace.conf && \
9  /usr/local/bin/install-quicklisp
10 CMD [ "make", "ci" ]