@jahia/cypress 6.5.0 → 7.0.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/env.Dockerfile +3 -2
- package/package.json +1 -1
package/env.Dockerfile
CHANGED
|
@@ -1,10 +1,11 @@
|
|
|
1
|
-
FROM cypress/browsers:node-22.
|
|
1
|
+
FROM cypress/browsers:node-22.21.0-chrome-141.0.7390.107-1-ff-144.0-edge-141.0.3537.92-1
|
|
2
2
|
|
|
3
3
|
ARG MAVEN_VER="3.8.1"
|
|
4
4
|
ARG MAVEN_BASE_URL="https://archive.apache.org/dist/maven/maven-3"
|
|
5
5
|
ARG YARN_VERSION="1.22.19"
|
|
6
6
|
|
|
7
|
-
RUN apt-get update
|
|
7
|
+
RUN apt-get update
|
|
8
|
+
RUN apt-get install -y jq curl ; \
|
|
8
9
|
npm -g install corepack ; \
|
|
9
10
|
corepack enable
|
|
10
11
|
|