@jahia/cypress 3.17.9 → 3.18.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 +2 -2
- package/package.json +1 -1
package/env.Dockerfile
CHANGED
|
@@ -1,4 +1,4 @@
|
|
|
1
|
-
FROM cypress/browsers:
|
|
1
|
+
FROM cypress/browsers:node-20.10.0-chrome-118.0.5993.88-1-ff-118.0.2-edge-118.0.2088.46-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"
|
|
@@ -15,7 +15,7 @@ COPY --chown=jahians:jahians package.json yarn.lock /home/jahians/
|
|
|
15
15
|
RUN mkdir -p /home/jahians/run-artifacts /home/jahians/results /home/jahians/cypress/plugins
|
|
16
16
|
|
|
17
17
|
#CI=true reduces the verbosity of the installation logs
|
|
18
|
-
RUN CI=true yarn install
|
|
18
|
+
RUN CI=true yarn install --non-interactive
|
|
19
19
|
|
|
20
20
|
COPY --chown=jahians:jahians . /home/jahians
|
|
21
21
|
|