memory node, neo4j grapph db

This commit is contained in:
Dobromir Popov
2024-03-20 08:54:14 +00:00
parent 97b0f9b64f
commit c9f77a6001
18 changed files with 625 additions and 0 deletions

6
store-all/api/Dockerfile Normal file
View File

@ -0,0 +1,6 @@
FROM python:3.9-slim
WORKDIR /usr/src/app
COPY requirements.txt ./
RUN pip install --no-cache-dir -r requirements.txt
COPY . .
CMD ["python", "app.py"]