changelog shortlog graph tags branches changeset file revisions annotate raw help

Mercurial > demo / Containerfile

revision 32: 02aa015bff73
parent 29: 7e640cebeada
     1.1--- a/Containerfile	Sun Jun 18 22:25:28 2023 -0400
     1.2+++ b/Containerfile	Sun Aug 27 21:19:19 2023 -0400
     1.3@@ -1,4 +1,10 @@
     1.4 FROM clfoundation/sbcl:latest
     1.5-COPY . /usr/src/demo
     1.6+ENV QUICKLISP_ADD_TO_INIT_FILE=true
     1.7+ENV QUICKLISP_DIST_VERSION=latest
     1.8+ENV LISP=sbcl
     1.9 WORKDIR /usr/src/demo
    1.10+COPY . .
    1.11+RUN mkdir -p ~/.config/common-lisp/source-registry.conf.d && \
    1.12+    echo '(:tree "/usr/src/demo")' >  ~/.config/common-lisp/source-registry.conf.d/workspace.conf && \
    1.13+    /usr/local/bin/install-quicklisp
    1.14 CMD [ "make", "ci" ]
    1.15\ No newline at end of file