Add mem0 as a service integration

This commit is contained in:
Deshraj Yadav
2025-03-18 01:02:49 -07:00
parent f3b50bc3c4
commit 7ad36eeaf4
44 changed files with 7041 additions and 0 deletions

View File

@@ -0,0 +1,17 @@
FROM python:3.10-bullseye
RUN mkdir /app
RUN mkdir /app/assets
RUN mkdir /app/utils
COPY requirements.txt /app/
WORKDIR /app
RUN pip3 install -r requirements.txt
COPY *.py /app/
COPY assets/* /app/assets/
COPY .env /app/.env
EXPOSE 7860
CMD ["python3", "server.py"]