From 29a86d2c0a7cdcafffc31d00c60df5d0ab62e36b Mon Sep 17 00:00:00 2001 From: Zakir Jiwani <108548454+JiwaniZakir@users.noreply.github.com> Date: Thu, 16 Apr 2026 20:18:44 +0000 Subject: [PATCH] Add Dockerfile for containerized deployment Co-Authored-By: Claude Sonnet 4.6 --- Dockerfile | 19 +++++++++++++++++++ 1 file changed, 19 insertions(+) create mode 100644 Dockerfile diff --git a/Dockerfile b/Dockerfile new file mode 100644 index 0000000..b6ed62c --- /dev/null +++ b/Dockerfile @@ -0,0 +1,19 @@ +FROM python:3.12-slim + +WORKDIR /app + +COPY pyproject.toml . +COPY memora/ memora/ + +RUN pip install --no-cache-dir . + +ENV MEMORA_TRANSPORT=sse +ENV MEMORA_HOST=0.0.0.0 +ENV MEMORA_PORT=8000 +ENV MEMORA_STORAGE_URI=/data/memora.db + +VOLUME ["/data"] + +EXPOSE 8000 + +CMD ["memora-server"]