testeranto 0.79.55 → 0.79.57
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/Bundle.Dockerfile +7 -1
- package/Report.Dockerfile +0 -1
- package/package.json +1 -1
package/Bundle.Dockerfile
CHANGED
|
@@ -1,11 +1,13 @@
|
|
|
1
1
|
FROM node:18.18.0
|
|
2
|
-
|
|
3
2
|
RUN apt-get update && \
|
|
4
3
|
apt-get install -y --no-install-recommends \
|
|
5
4
|
python3 \
|
|
6
5
|
make \
|
|
7
6
|
g++ && \
|
|
8
7
|
rm -rf /var/lib/apt/lists/*
|
|
8
|
+
# FROM shivjm/node-chromium:node18-chromium81-alpine
|
|
9
|
+
|
|
10
|
+
|
|
9
11
|
|
|
10
12
|
RUN yarn global add node-gyp
|
|
11
13
|
|
|
@@ -23,6 +25,10 @@ COPY ./bundle.mts /usr/src/app/bundle.mts
|
|
|
23
25
|
COPY ./test.mts /usr/src/app/test.mts
|
|
24
26
|
|
|
25
27
|
RUN yarn run init
|
|
28
|
+
|
|
29
|
+
RUN apt-get install chromium
|
|
30
|
+
RUN /usr/bin/chromium-browser --no-sandbox --version > /etc/chromium-version
|
|
31
|
+
|
|
26
32
|
RUN yarn bundle
|
|
27
33
|
# COPY ./docs/ /usr/src/app/docs
|
|
28
34
|
# # COPY ./testeranto.json /usr/src/app/testeranto.json
|
package/Report.Dockerfile
CHANGED