-
Notifications
You must be signed in to change notification settings - Fork 0
Expand file tree
/
Copy pathDockerfile
More file actions
31 lines (24 loc) · 794 Bytes
/
Copy pathDockerfile
File metadata and controls
31 lines (24 loc) · 794 Bytes
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
# MemorySync Cursor Starter Container
# Provides an isolated staging environment with Node.js, Python, and MCP inspection tools
FROM node:20-slim
# Install Python, curl, bash, git, and jq
RUN apt-get update && apt-get install -y --no-install-recommends \
python3 \
python3-pip \
python3-venv \
curl \
bash \
git \
jq \
&& rm -rf /var/lib/apt/lists/*
WORKDIR /workspace
# Set default environment variables
ENV MEMORYSYNC_MCP_URL=https://mcp.memorysync.io/mcp
ENV MEMORYSYNC_DOCS_MCP_URL=https://docs.memorysync.io/mcp
ENV PYTHONUNBUFFERED=1
# Copy starter project files
COPY . /workspace
# Make scripts executable
RUN chmod +x setup.sh tools/inspect_memory.sh 2>/dev/null || true
# Default command runs ping check
CMD ["./tools/inspect_memory.sh", "ping"]