Skip to content

Commit 85614e4

Browse files
Add unzip to factory (#1015)
* Add unzip to the factory build * Update factory version
1 parent b3f3064 commit 85614e4

File tree

3 files changed

+10
-4
lines changed

3 files changed

+10
-4
lines changed

factory/.env

+1-1
Original file line numberDiff line numberDiff line change
@@ -14,7 +14,7 @@ FACTORY_DEFAULT_NODE_VERSION='20.11.0'
1414
NODE_VERSION="${FACTORY_DEFAULT_NODE_VERSION}"
1515

1616
# Update this to deploy the docker factory if you make changes to factory.Dockerfile or install scripts
17-
FACTORY_VERSION='3.5.0'
17+
FACTORY_VERSION='3.5.1'
1818

1919
# Chrome versions: https://www.ubuntuupdates.org/package/google_chrome/stable/main/base/google-chrome-stable
2020
CHROME_VERSION='121.0.6167.85-1'

factory/CHANGELOG.md

+6-2
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,9 @@
11
# Change log
22

3+
## 3.5.1
4+
5+
* Added `unzip` to factory. Addressed in [#1015](https://github.com/cypress-io/cypress-docker-images/pull/1015)
6+
37
## 3.5.0
48

59
* 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 @@
913
* 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)
1014

1115
## 3.3.0
16+
1217
* **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)
13-
1418

1519
## 3.2.0
1620

@@ -27,10 +31,10 @@
2731

2832
* Added `openssl` and `ca-certificates` to factory. Addressed in [#920](https://github.com/cypress-io/cypress-docker-images/pull/920)
2933

30-
3134
## 2.4.0
3235

3336
* 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)
37+
3438
## 2.3.0
3539

3640
* 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)

factory/factory.Dockerfile

+3-1
Original file line numberDiff line numberDiff line change
@@ -58,7 +58,9 @@ RUN ls -la /root \
5858
# build only dependancies: removed in onbuild step
5959
bzip2 \
6060
gnupg \
61-
dirmngr
61+
dirmngr \
62+
# Needed by cypress installation 'unzip.js' script
63+
unzip
6264

6365
# Copy install scripts into container, these will be deleted in an onbuild step later.
6466
COPY ./installScripts /opt/installScripts

0 commit comments

Comments
 (0)