diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..5dbe417 --- /dev/null +++ b/Dockerfile @@ -0,0 +1,9 @@ +FROM commonlispbr/roswell:latest +RUN apt update && apt install libreadline7 -y +WORKDIR /lisp-chat +COPY ./lisp-chat.asd lisp-chat.asd +COPY ./src src +COPY ./roswell roswell +RUN ros install ./ +EXPOSE 5558 +ENTRYPOINT ["/root/.roswell/bin/lisp-chat-server"]