@haibun/utils 3.0.1 → 3.0.2

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.
Files changed (2) hide show
  1. package/package.json +2 -2
  2. package/vcapture/Dockerfile +29 -28
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "@haibun/utils",
3
3
  "type": "module",
4
- "version": "3.0.1",
4
+ "version": "3.0.2",
5
5
  "description": "",
6
6
  "main": "index.js",
7
7
  "files": ["ref.package.json", "build/**", "scaffold/**", "vcapture/**"],
@@ -22,5 +22,5 @@
22
22
  "author": "",
23
23
  "license": "ISC",
24
24
  "gitHead": "7cf9680bd922fb622fb59f1e6bf5b65284cb8fd5",
25
- "dependencies": { "@haibun/cli": "3.0.1", "@haibun/core": "3.0.1" }
25
+ "dependencies": { "@haibun/cli": "3.0.2", "@haibun/core": "3.0.2" }
26
26
  }
@@ -1,36 +1,36 @@
1
- FROM mcr.microsoft.com/playwright:v1.52.0-noble
1
+ FROM node:24-bookworm
2
2
 
3
3
  # Set non-interactive mode to avoid prompts
4
4
  ENV DEBIAN_FRONTEND=noninteractive
5
5
 
6
6
  RUN apt-get update && apt-get install -y \
7
- alsa-utils \
8
- psmisc \
9
- procps \
10
- wget \
11
- xdg-utils \
12
- xvfb \
13
- ffmpeg \
14
- curl \
15
- vim-tiny \
16
- strace \
17
- bash \
18
- software-properties-common \
19
- dbus-x11 \
20
- dbus-user-session \
21
- x11vnc \
22
- x11-utils \
23
- vlc \
24
- pipewire \
25
- pipewire-pulse \
26
- wireplumber \
27
- pipewire-audio-client-libraries \
28
- pulseaudio-utils \
29
- libportaudio2 \
30
- xfce4 \
31
- xfce4-terminal \
32
- xterm \
33
- && rm -rf /var/lib/apt/lists/*
7
+ alsa-utils \
8
+ psmisc \
9
+ procps \
10
+ wget \
11
+ xdg-utils \
12
+ xvfb \
13
+ ffmpeg \
14
+ curl \
15
+ vim-tiny \
16
+ strace \
17
+ bash \
18
+ software-properties-common \
19
+ dbus-x11 \
20
+ dbus-user-session \
21
+ x11vnc \
22
+ x11-utils \
23
+ vlc \
24
+ pipewire \
25
+ pipewire-pulse \
26
+ wireplumber \
27
+ pipewire-audio-client-libraries \
28
+ pulseaudio-utils \
29
+ libportaudio2 \
30
+ xfce4 \
31
+ xfce4-terminal \
32
+ xterm \
33
+ && rm -rf /var/lib/apt/lists/*
34
34
 
35
35
  RUN git clone https://github.com/novnc/noVNC.git /opt/noVNC && \
36
36
  git clone https://github.com/novnc/websockify /opt/noVNC/utils/websockify
@@ -43,6 +43,7 @@ COPY package*.json kokoro-speak.cjs *.sh ./
43
43
  RUN chmod +x *.sh
44
44
 
45
45
  RUN npm i # && npm install kokoro-js # kokoro-js is installed on demand in capture-start.sh
46
+ RUN npx playwright install --with-deps
46
47
 
47
48
  RUN mkdir -p /run/user/1000 && chmod 700 /run/user/1000
48
49