commit 5af203f4f3c5c7799b22a2bd4da832de864af4c2 Author: chaim Date: Sat Apr 4 12:48:50 2026 +0000 Add Dockerfile for Paperclip deployment diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..648cc2e --- /dev/null +++ b/Dockerfile @@ -0,0 +1,11 @@ +FROM node:24-slim + +RUN npm install -g paperclipai + +VOLUME ["/data"] + +ENV PAPERCLIP_HOME=/data + +EXPOSE 3100 + +CMD ["paperclipai", "run"]