We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 7eaa401 commit 230fb59Copy full SHA for 230fb59
README.md
@@ -3,9 +3,10 @@ This is a simple Cypress test configured to create a HTML report.
3
This test can be run in Octopus from a worker container built with the following `Dockerfile`:
4
5
```
6
-FROM cypress/included:6.4.0
7
-RUN apt-get update; apt-get install -y libicu-dev
8
-RUN npm install -g inline-assets
+FROM cypress/included:9.7.0
+RUN apt-get update; \
+ apt-get install -y libicu67
9
+RUN npm install -g inline-assets mochawesome
10
ENTRYPOINT []
11
12
@@ -18,4 +19,4 @@ RESULT=$?
18
19
inline-assets mochawesome.html selfcontained.html
20
new_octopusartifact "${PWD}/selfcontained.html" "selfcontained.html"
21
exit ${RESULT}
-```
22
+```
0 commit comments