From b2ae050be031c50961ce84cbe7136aa0586733d6 Mon Sep 17 00:00:00 2001 From: Manoel Vilela Date: Thu, 19 Nov 2020 13:28:24 -0300 Subject: [PATCH] Add Dockerfile --- Dockerfile | 9 +++++++++ 1 file changed, 9 insertions(+) create mode 100644 Dockerfile 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"]