arise-browser 0.2.0 → 0.2.1

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.
@@ -1,10 +1,15 @@
1
1
  FROM ghcr.io/m1k1o/neko/google-chrome:latest
2
2
 
3
- # socat to forward CDP from 127.0.0.1:9222 to 0.0.0.0:9222
3
+ # socat to forward CDP from 127.0.0.1:9222 to 0.0.0.0:9223
4
4
  # (Chrome ignores --remote-debugging-address in newer versions)
5
5
  RUN apt-get update -qq && apt-get install -y -qq --no-install-recommends socat && \
6
6
  apt-get clean -y && rm -rf /var/lib/apt/lists/*
7
7
 
8
+ # Pre-create Chrome profile directory with correct ownership
9
+ # (Docker volumes mount as root; Chrome runs as neko user)
10
+ RUN mkdir -p /home/neko/.config/arise-chrome && \
11
+ chown -R neko:neko /home/neko/.config/arise-chrome
12
+
8
13
  # Override supervisord config to enable CDP (--remote-debugging-port=9222)
9
14
  COPY supervisord.conf /etc/neko/supervisord/google-chrome.conf
10
15
 
@@ -4,7 +4,7 @@ export function registerHealthRoute(app) {
4
4
  return {
5
5
  status: "ok",
6
6
  connected: session.isConnected,
7
- version: "0.2.0",
7
+ version: "0.2.1",
8
8
  };
9
9
  });
10
10
  }
package/package.json CHANGED
@@ -1,6 +1,6 @@
1
1
  {
2
2
  "name": "arise-browser",
3
- "version": "0.2.0",
3
+ "version": "0.2.1",
4
4
  "description": "AI browser automation engine — persistent refs, multi-strategy actions, behavior recording",
5
5
  "type": "module",
6
6
  "main": "./dist/src/index.js",