Files
qinglong/deploy/containers/ql3-cluster-control/Dockerfile
T

125 lines
4.6 KiB
Docker

FROM node:24.18.0-bookworm-slim@sha256:6f7b03f7c2c8e2e784dcf9295400527b9b1270fd37b7e9a7285cf83b6951452d AS dependency-manifest
WORKDIR /opt/qinglong
COPY deploy/containers/ql3-cluster-control/package.json ./
COPY deploy/containers/ql3-cluster-control/package-lock.json ./
FROM dependency-manifest AS build-dependencies
RUN npm ci --ignore-scripts --no-audit --no-fund \
&& npm cache clean --force
FROM dependency-manifest AS runtime-dependency-manifest
COPY deploy/containers/ql3-cluster-control/runtime-dependencies/package.json \
package.json
COPY deploy/containers/ql3-cluster-control/runtime-dependencies/package-lock.json \
package-lock.json
FROM build-dependencies AS workspace
WORKDIR /workspace
COPY packages/ql3-runtime-core packages/ql3-runtime-core
COPY packages/ql3-cluster-postgres packages/ql3-cluster-postgres
COPY packages/ql3-cluster-control packages/ql3-cluster-control
COPY deploy/containers/ql3-cluster-control/tsconfig.default.json \
deploy/containers/ql3-cluster-control/tsconfig.default.json
RUN ln -s /opt/qinglong/node_modules node_modules \
&& mkdir -p /opt/qinglong/node_modules/@qinglong \
&& ln -s /workspace/packages/ql3-runtime-core \
/opt/qinglong/node_modules/@qinglong/runtime-core \
&& ln -s /workspace/packages/ql3-cluster-postgres \
/opt/qinglong/node_modules/@qinglong/cluster-postgres \
&& ln -s /workspace/packages/ql3-cluster-control \
/opt/qinglong/node_modules/@qinglong/cluster-control \
&& /opt/qinglong/node_modules/.bin/tsc \
-p packages/ql3-runtime-core/tsconfig.json \
&& /opt/qinglong/node_modules/.bin/tsc \
-p packages/ql3-cluster-postgres/tsconfig.json \
&& /opt/qinglong/node_modules/.bin/tsc \
-p deploy/containers/ql3-cluster-control/tsconfig.default.json
FROM workspace AS workspace-ai
COPY packages/ql3-ai packages/ql3-ai
RUN ln -s /workspace/packages/ql3-ai \
/opt/qinglong/node_modules/@qinglong/ai \
&& /opt/qinglong/node_modules/.bin/tsc \
-p packages/ql3-ai/tsconfig.json \
&& /opt/qinglong/node_modules/.bin/tsc \
-p packages/ql3-cluster-control/tsconfig.json
FROM runtime-dependency-manifest AS external-dependencies
RUN npm ci --omit=dev --ignore-scripts --no-audit --no-fund \
&& npm cache clean --force
FROM external-dependencies AS assembled
RUN mkdir -p \
node_modules/@qinglong/runtime-core \
node_modules/@qinglong/cluster-postgres \
node_modules/@qinglong/cluster-control
COPY --from=workspace /workspace/packages/ql3-runtime-core/package.json \
node_modules/@qinglong/runtime-core/package.json
COPY --from=workspace /workspace/packages/ql3-runtime-core/dist \
node_modules/@qinglong/runtime-core/dist
COPY --from=workspace /workspace/packages/ql3-cluster-postgres/package.json \
node_modules/@qinglong/cluster-postgres/package.json
COPY --from=workspace /workspace/packages/ql3-cluster-postgres/dist \
node_modules/@qinglong/cluster-postgres/dist
COPY --from=workspace /workspace/packages/ql3-cluster-control/package.json \
node_modules/@qinglong/cluster-control/package.json
COPY --from=workspace /workspace/.ql3-image-build/cluster-control-default-dist \
node_modules/@qinglong/cluster-control/dist
FROM assembled AS assembled-ai
RUN mkdir -p node_modules/@qinglong/ai
COPY --from=workspace-ai /workspace/packages/ql3-ai/package.json \
node_modules/@qinglong/ai/package.json
COPY --from=workspace-ai /workspace/packages/ql3-ai/dist \
node_modules/@qinglong/ai/dist
COPY --from=workspace-ai /workspace/packages/ql3-cluster-control/dist \
node_modules/@qinglong/cluster-control/dist
FROM node:24.18.0-alpine3.23@sha256:595398b0081eacda8e1c4c5b97b76cd1020e4d58a8ebcb4843b9bca1e79e7436 AS runtime-base
ARG SOURCE_REVISION=uncommitted
LABEL org.opencontainers.image.title="QingLong 3.0 Cluster Control" \
org.opencontainers.image.description="QingLong 3.0 PostgreSQL-backed cluster control plane" \
org.opencontainers.image.source="https://github.com/whyour/qinglong" \
org.opencontainers.image.revision="${SOURCE_REVISION}" \
org.opencontainers.image.licenses="Apache-2.0" \
org.opencontainers.image.version="3.0.0-alpha.2"
ENV NODE_ENV=production
WORKDIR /opt/qinglong
USER 10001:10001
EXPOSE 5800
FROM runtime-base AS runtime-ai
LABEL org.opencontainers.image.title="QingLong 3.0 Cluster Control AI" \
org.opencontainers.image.description="Optional QingLong 3.0 AI-enabled cluster control plane"
COPY --from=assembled-ai --chown=10001:10001 /opt/qinglong ./
ENTRYPOINT ["node", "/opt/qinglong/node_modules/@qinglong/cluster-control/dist/aiCli.js"]
FROM runtime-base AS runtime
COPY --from=assembled --chown=10001:10001 /opt/qinglong ./
ENTRYPOINT ["node", "/opt/qinglong/node_modules/@qinglong/cluster-control/dist/cli.js"]