Skip to content

Commit d4ea2cb

Browse files
committed
fix: WIP application is not working with docker
ERROR: Unhandled QUICKLISP-CLIENT:SYSTEM-NOT-FOUND in thread #<SB-THREAD:THREAD "main thread" RUNNING {1001550183}>: System "40ants-routes/handler" not found This happens at loading reblocks, I'm not sure why this. Locally it was happening as well, but was fixed eventually with some dist update (ultralisp).
1 parent 4074d3d commit d4ea2cb

File tree

1 file changed

+7
-2
lines changed

1 file changed

+7
-2
lines changed

Dockerfile

Lines changed: 7 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -2,8 +2,13 @@ FROM commonlispbr/roswell
22
WORKDIR /app
33
RUN ros install commonlispbr/quicksys
44
RUN ros run -s quicksys -e "(qs:install-dist :ultralisp)" -q
5-
RUN ros run -s weblocks -s weblocks-ui -q
6-
COPY . .
5+
RUN ros run -e '(ql:update-all-dists :prompt nil)' # update all distsx
6+
RUN ros run -s reblocks -s reblocks-ui -q
7+
COPY roswell roswell
8+
COPY web web
9+
COPY t t
10+
COPY src src
11+
COPY lisp-inference.asd .
712
RUN ros install ./lisp-inference.asd
813
RUN ros run -s lisp-inference/web -q
914
EXPOSE 40000

0 commit comments

Comments
 (0)