-
-
Notifications
You must be signed in to change notification settings - Fork 214
Expand file tree
/
Copy pathDockerfile
More file actions
75 lines (60 loc) · 3.21 KB
/
Copy pathDockerfile
File metadata and controls
75 lines (60 loc) · 3.21 KB
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
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
# ---------------------------------------------------------------------------------------
# Neo source acquisition. DEFAULT: a pinned git clone — portable (no co-located
# local checkout required, so any operator / CI host can build), correct-branch + freshly
# pulled, reproducible per ref. Dev iteration can opt into the local build context with
# `--build-arg NEO_SOURCE=local` (the build context must then be the neo repo root). A
# published npm package supersedes this after the v13 release.
# NEO_SOURCE : 'git' (default) | 'local'
# NEO_REF : git ref to clone (default 'dev'; pin to a tag/SHA for full reproducibility)
# NEO_REPO_URL : neo repository (MIT-licensed) to clone from
# ---------------------------------------------------------------------------------------
ARG NEO_SOURCE=git
ARG NEO_REF=dev
ARG NEO_REPO_URL=https://github.com/neomjs/neo.git
FROM alpine/git AS source-git
ARG NEO_REF
ARG NEO_REPO_URL
WORKDIR /neo
# fetch + checkout (NOT `clone --branch`, which rejects raw SHAs) so NEO_REF accepts a
# branch, a tag, OR a full commit SHA (the reproducible pin). GitHub serves reachable SHAs.
RUN git init -q && git remote add origin "${NEO_REPO_URL}" \
&& git fetch --depth 1 origin "${NEO_REF}" \
&& git checkout -q --detach FETCH_HEAD
FROM node:24-alpine AS source-local
WORKDIR /neo
COPY . .
# Select the source stage from the NEO_SOURCE build arg. In 'git' mode the source-local
# stage is never built, so no local build context is required (the portability fix).
FROM source-${NEO_SOURCE} AS source
FROM node:24-alpine AS builder
WORKDIR /app
# better-sqlite3 is part of the Memory Core runtime and needs native build tools
# when installing on Alpine. The tools stay in this build stage.
RUN apk add --no-cache python3 make g++
COPY --from=source /neo/package*.json ./
# --ignore-scripts skips the root `prepare` lifecycle hook before buildScripts/
# is copied. Neo's Agent OS runtime packages currently live in devDependencies;
# installing them here keeps that cost inside this Right-Hemisphere image.
RUN npm ci --ignore-scripts
COPY --from=source /neo ./
# Path A for #10964: generate gitignored per-server config.mjs files inside the
# image so clean external checkouts do not need manual template copies.
RUN npm rebuild better-sqlite3 && node ./ai/scripts/setup/initServerConfigs.mjs
FROM node:24-alpine
WORKDIR /app
# `git` is required by `ai/services/knowledge-base/helpers/GitMirror.mjs` for
# tenant-repo clone/fetch. The orchestrator daemon's tenantRepoSync lane and
# the operator-bulk `syncTenantRepos.mjs` CLI both shell out to it.
RUN apk add --no-cache libstdc++ git
COPY --from=builder /app ./
ENV NODE_ENV=production
ENV NEO_TRANSPORT=sse
# Accept the target service as build arguments.
# `TARGET_SERVER` selects an MCP server image ('knowledge-base' or 'memory-core').
# `SERVICE_ENTRYPOINT` generalizes the entrypoint so non-MCP-server services — e.g.
# the Agent OS orchestrator (ADR 0014 cloud topology, Sub B #11723) — build from the
# same image: pass `SERVICE_ENTRYPOINT=ai/daemons/orchestrator/daemon.mjs`.
ARG TARGET_SERVER
ARG SERVICE_ENTRYPOINT=ai/mcp/server/${TARGET_SERVER}/mcp-server.mjs
ENV SERVER_ENTRYPOINT=${SERVICE_ENTRYPOINT}
CMD ["sh", "-c", "node ${SERVER_ENTRYPOINT}"]