Skip to content

Commit

Permalink
Add unzip to factory (cypress-io#1015)
Browse files Browse the repository at this point in the history
* Add unzip to the factory build

* Update factory version
  • Loading branch information
CamilleDrapier authored Feb 16, 2024
1 parent b3f3064 commit 85614e4
Show file tree
Hide file tree
Showing 3 changed files with 10 additions and 4 deletions.
2 changes: 1 addition & 1 deletion factory/.env
Original file line number Diff line number Diff line change
Expand Up @@ -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'
Expand Down
8 changes: 6 additions & 2 deletions factory/CHANGELOG.md
Original file line number Diff line number Diff line change
@@ -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)
Expand All @@ -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

Expand All @@ -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)
Expand Down
4 changes: 3 additions & 1 deletion factory/factory.Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -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
Expand Down

0 comments on commit 85614e4

Please sign in to comment.