-
-
Notifications
You must be signed in to change notification settings - Fork 32
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
- Loading branch information
Showing
6 changed files
with
56 additions
and
8 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,2 @@ | ||
.qlot/local-projects | ||
.qlot/dists/quicklisp |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
|
@@ -9,5 +9,3 @@ | |
|
||
t/test.db | ||
.qlot/ | ||
qlfile | ||
qlfile.lock |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -1,18 +1,32 @@ | ||
ARG LISP=sbcl | ||
|
||
FROM fukamachi/qlot AS build-env | ||
|
||
WORKDIR /app | ||
COPY qlfile /app | ||
COPY qlfile.lock /app | ||
|
||
RUN qlot install --no-deps | ||
|
||
FROM fukamachi/${LISP} AS base | ||
|
||
RUN ros -e '(ql-dist:install-dist "http://dist.ultralisp.org/" :prompt nil)' | ||
RUN ros install fukamachi/cl-dbi rove | ||
RUN apt-get update && \ | ||
apt-get install -y --no-install-recommends \ | ||
libsqlite3-dev \ | ||
default-libmysqlclient-dev \ | ||
default-mysql-client && \ | ||
rm -rf /var/lib/apt/lists/* | ||
|
||
COPY . /app | ||
WORKDIR /app | ||
COPY --from=build-env /app/.qlot /app/.qlot | ||
RUN set -x; \ | ||
ros -e '(ql:update-dist "quicklisp" :prompt nil)' && \ | ||
ros install "fukamachi/qlot" | ||
|
||
ENV CL_SOURCE_REGISTRY "/app/" | ||
COPY qlfile /app | ||
COPY qlfile.lock /app | ||
|
||
COPY . /app | ||
RUN qlot install | ||
|
||
ENTRYPOINT "/app/docker/entrypoint.sh" |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,5 @@ | ||
ql cl-dbi :upstream | ||
ql cl-mysql :upstream | ||
ql dissect :upstream | ||
ql sxql :upstream | ||
ql rove :upstream |
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,29 @@ | ||
("quicklisp" . | ||
(:class qlot/source/dist:source-dist | ||
:initargs (:distribution "https://beta.quicklisp.org/dist/quicklisp.txt" :%version :latest) | ||
:version "2023-10-21")) | ||
("cl-dbi" . | ||
(:class qlot/source/ql:source-ql-upstream | ||
:initargs nil | ||
:version "ql-upstream-2ff41f0706180e140a31b844da4f0272e1a281cd" | ||
:remote-url "https://github.com/fukamachi/cl-dbi.git")) | ||
("cl-mysql" . | ||
(:class qlot/source/ql:source-ql-upstream | ||
:initargs nil | ||
:version "ql-upstream-b273cf772f13a525b534f5ee58bf36fb733204f3" | ||
:remote-url "https://github.com/hackinghat/cl-mysql.git")) | ||
("dissect" . | ||
(:class qlot/source/ql:source-ql-upstream | ||
:initargs nil | ||
:version "ql-upstream-a70cabcd748cf7c041196efd711e2dcca2bbbb2c" | ||
:remote-url "https://github.com/Shinmera/dissect.git")) | ||
("sxql" . | ||
(:class qlot/source/ql:source-ql-upstream | ||
:initargs nil | ||
:version "ql-upstream-c79c252bef276bb0343ced5149083e3b91d85d9b" | ||
:remote-url "https://github.com/fukamachi/sxql.git")) | ||
("rove" . | ||
(:class qlot/source/ql:source-ql-upstream | ||
:initargs nil | ||
:version "ql-upstream-cacea7331c10fe9d8398d104b2dfd579bf7ea353" | ||
:remote-url "https://github.com/fukamachi/rove.git")) |