From 85614e4b28db894c612f5b7929b76ace9a801bae Mon Sep 17 00:00:00 2001 From: Camille Drapier Date: Fri, 16 Feb 2024 23:43:47 +0900 Subject: [PATCH] Add unzip to factory (#1015) * Add unzip to the factory build * Update factory version --- factory/.env | 2 +- factory/CHANGELOG.md | 8 ++++++-- factory/factory.Dockerfile | 4 +++- 3 files changed, 10 insertions(+), 4 deletions(-) diff --git a/factory/.env b/factory/.env index 79b99f3c38..3ce976b8cd 100644 --- a/factory/.env +++ b/factory/.env @@ -14,7 +14,7 @@ FACTORY_DEFAULT_NODE_VERSION='20.11.0' NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}" # Update this to deploy the docker factory if you make changes to factory.Dockerfile or install scripts -FACTORY_VERSION='3.5.0' +FACTORY_VERSION='3.5.1' # Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable CHROME_VERSION='121.0.6167.85-1' diff --git a/factory/CHANGELOG.md b/factory/CHANGELOG.md index 00040c0009..5a82755909 100644 --- a/factory/CHANGELOG.md +++ b/factory/CHANGELOG.md @@ -1,5 +1,9 @@ # Change log +## 3.5.1 + +* Added `unzip` to factory. Addressed in [#1015](https://github.com/cypress-io/cypress-docker-images/pull/1015) + ## 3.5.0 * Updated default node version from `20.10.0` to `20.11.0`. Addressed in [#1012](https://github.com/cypress-io/cypress-docker-images/pull/1012) @@ -9,8 +13,8 @@ * Updated default node version from `20.9.0` to `20.10.0`. Addressed in [#999](https://github.com/cypress-io/cypress-docker-images/pull/999) ## 3.3.0 + * **Fixed:** Issue with temporary file cleanup due to extra character in temp Debian package file path. Addressed in [#998](https://github.com/cypress-io/cypress-docker-images/pull/998) - ## 3.2.0 @@ -27,10 +31,10 @@ * Added `openssl` and `ca-certificates` to factory. Addressed in [#920](https://github.com/cypress-io/cypress-docker-images/pull/920) - ## 2.4.0 * Updated default node version from `18.16.0` to `18.16.1`. Addressed in [#906](https://github.com/cypress-io/cypress-docker-images/pull/906) + ## 2.3.0 * Updated default node version from `18.15.0` to `18.16.0`. Addressed in [#881](https://github.com/cypress-io/cypress-docker-images/pull/881) diff --git a/factory/factory.Dockerfile b/factory/factory.Dockerfile index 3e94adb304..b8264076d4 100644 --- a/factory/factory.Dockerfile +++ b/factory/factory.Dockerfile @@ -58,7 +58,9 @@ RUN ls -la /root \ # build only dependancies: removed in onbuild step bzip2 \ gnupg \ - dirmngr + dirmngr \ + # Needed by cypress installation 'unzip.js' script + unzip # Copy install scripts into container, these will be deleted in an onbuild step later. COPY ./installScripts /opt/installScripts