testeranto 0.79.56 → 0.79.58

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 CHANGED
@@ -1,12 +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
- chromium \
6
4
  python3 \
7
5
  make \
8
6
  g++ && \
9
7
  rm -rf /var/lib/apt/lists/*
8
+ # FROM shivjm/node-chromium:node18-chromium81-alpine
9
+
10
+
10
11
 
11
12
  RUN yarn global add node-gyp
12
13
 
@@ -24,6 +25,10 @@ COPY ./bundle.mts /usr/src/app/bundle.mts
24
25
  COPY ./test.mts /usr/src/app/test.mts
25
26
 
26
27
  RUN yarn run init
28
+
29
+ RUN apt-get update && apt-get install -y chromium
30
+ RUN /usr/bin/chromium-browser --no-sandbox --version > /etc/chromium-version
31
+
27
32
  RUN yarn bundle
28
33
  # COPY ./docs/ /usr/src/app/docs
29
34
  # # COPY ./testeranto.json /usr/src/app/testeranto.json
package/package.json CHANGED
@@ -1,7 +1,7 @@
1
1
  {
2
2
  "name": "testeranto",
3
3
  "description": "teeny tiny tightly-typed typescript tests",
4
- "version": "0.79.56",
4
+ "version": "0.79.58",
5
5
  "engines": {
6
6
  "node": "18.18.0"
7
7
  },