limbo-ai 1.23.2 → 1.23.3
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
package/package.json
CHANGED
|
@@ -106,15 +106,11 @@ test('entrypoint.sh appends channels_config.telegram conditionally', () => {
|
|
|
106
106
|
|
|
107
107
|
// ─── 4. Dockerfile references ZeroClaw, not OpenClaw ────────────────────────
|
|
108
108
|
|
|
109
|
-
test('Dockerfile
|
|
109
|
+
test('Dockerfile pulls ZeroClaw binary from official image', () => {
|
|
110
110
|
const df = read('Dockerfile');
|
|
111
|
-
|
|
112
|
-
|
|
113
|
-
|
|
114
|
-
assert.ok(pullsOfficial || buildsFromSource,
|
|
115
|
-
'Dockerfile must either pull ZeroClaw from ghcr.io or build from source');
|
|
116
|
-
assert.ok(df.includes('COPY --from=zeroclaw-builder /usr/local/bin/zeroclaw /usr/local/bin/zeroclaw')
|
|
117
|
-
|| df.includes('COPY --from=zeroclaw /usr/local/bin/zeroclaw /usr/local/bin/zeroclaw'));
|
|
111
|
+
assert.ok(df.match(/FROM ghcr\.io\/zeroclaw-labs\/zeroclaw:\S+ AS zeroclaw/),
|
|
112
|
+
'Dockerfile must pull ZeroClaw from ghcr.io/zeroclaw-labs/zeroclaw');
|
|
113
|
+
assert.ok(df.includes('COPY --from=zeroclaw /usr/local/bin/zeroclaw /usr/local/bin/zeroclaw'));
|
|
118
114
|
});
|
|
119
115
|
|
|
120
116
|
test('Dockerfile does not reference openclaw or mcporter', () => {
|