diff --git a/README.md b/README.md index 1d5055f..294f8b0 100644 --- a/README.md +++ b/README.md @@ -3,9 +3,10 @@ This is a simple Cypress test configured to create a HTML report. This test can be run in Octopus from a worker container built with the following `Dockerfile`: ``` -FROM cypress/included:6.4.0 -RUN apt-get update; apt-get install -y libicu-dev -RUN npm install -g inline-assets +FROM cypress/included:9.7.0 +RUN apt-get update; \ + apt-get install -y libicu67 +RUN npm install -g inline-assets mochawesome ENTRYPOINT [] ``` @@ -18,4 +19,4 @@ RESULT=$? inline-assets mochawesome.html selfcontained.html new_octopusartifact "${PWD}/selfcontained.html" "selfcontained.html" exit ${RESULT} -``` \ No newline at end of file +```