Initial commit: Claude Memory API service

This commit is contained in:
Viktor Barzin 2026-03-14 08:47:52 +00:00
commit 76bfd5bda7
No known key found for this signature in database
GPG key ID: 0EB088298288D958
3 changed files with 206 additions and 0 deletions

15
Dockerfile Normal file
View file

@ -0,0 +1,15 @@
FROM python:3.12-slim
WORKDIR /app
COPY requirements.txt .
RUN pip install --no-cache-dir -r requirements.txt
COPY app.py .
RUN useradd -r -u 1000 app
USER app
EXPOSE 8000
CMD ["uvicorn", "app:app", "--host", "0.0.0.0", "--port", "8000"]