From 230fb59a2919f161a84e8584e8d1039935e0ee12 Mon Sep 17 00:00:00 2001 From: Matthew Casperson Date: Tue, 18 Jun 2024 08:10:00 +1000 Subject: [PATCH] Update README.md --- README.md | 9 +++++---- 1 file changed, 5 insertions(+), 4 deletions(-) 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 +```