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.
package/deploy/neko/Dockerfile
CHANGED
|
@@ -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:
|
|
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
|
|