doc2vec 1.0.5 → 1.1.0
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/Dockerfile +19 -1
- package/dist/doc2vec copy.js +1437 -0
- package/dist/logger copy.js +246 -0
- package/dist/logger.js +19 -3
- package/doc2vec.ts +1 -2
- package/package.json +1 -1
package/Dockerfile
CHANGED
|
@@ -2,10 +2,28 @@ FROM node:20-slim
|
|
|
2
2
|
|
|
3
3
|
WORKDIR /app
|
|
4
4
|
|
|
5
|
-
# Install Python and build tools
|
|
6
5
|
RUN apt-get update && apt-get install -y \
|
|
7
6
|
git \
|
|
8
7
|
python3 \
|
|
9
8
|
make \
|
|
10
9
|
g++ \
|
|
10
|
+
sqlite3 \
|
|
11
|
+
libsqlite3-dev \
|
|
12
|
+
curl \
|
|
13
|
+
ca-certificates \
|
|
14
|
+
chromium \
|
|
15
|
+
fonts-freefont-ttf \
|
|
16
|
+
fonts-ipafont-gothic \
|
|
17
|
+
fonts-kacst \
|
|
18
|
+
fonts-liberation \
|
|
19
|
+
fonts-noto-color-emoji \
|
|
20
|
+
fonts-thai-tlwg \
|
|
21
|
+
libx11-xcb1 \
|
|
22
|
+
libxcb-dri3-0 \
|
|
23
|
+
libxcomposite1 \
|
|
24
|
+
libxdamage1 \
|
|
25
|
+
libxi6 \
|
|
26
|
+
libxrandr2 \
|
|
27
|
+
libxshmfence1 \
|
|
28
|
+
libxtst6 \
|
|
11
29
|
&& apt-get clean
|