Skip installing green2url by default in the Docker container (#4389)

This commit is contained in:
Peter Hedenskog 2025-01-07 20:23:55 +01:00 committed by GitHub
parent e3a104e3b7
commit 2db8158f03
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194
2 changed files with 2 additions and 2 deletions

View File

@ -5,7 +5,7 @@
36.0.0 will be released late Januart 2025.
### Breaking
* Only download green2url data when you specifically ask for it [#4354](https://github.com/sitespeedio/sitespeed.io/pull/4354). The Docker container [#4356](https://github.com/sitespeedio/sitespeed.io/pull/4356) will still have the data but installing using npm you need to run `DOWNLOAD_URL2GREEN=true npm install sitespeed.io`. The green2url is also updated to use the latest availible data by late 2024.
* Only download green2url data when you specifically ask for it [#4354](https://github.com/sitespeedio/sitespeed.io/pull/4354). To install you need to run `DOWNLOAD_URL2GREEN=true npm install sitespeed.io`. The green2url is also updated to use the latest availible data by late 2024. This saves 80 mb in default downloading.
* Make sure you can't run with both `--cpu` and `--collectProfileRun` since that do not make any sense [#4298](https://github.com/sitespeedio/sitespeed.io/pull/4298)
* Use correct name in Browsertime: userTimingAllowList instead of whitelist [#4346](https://github.com/sitespeedio/sitespeed.io/pull/4346).
* Plugins need to update the plugin dependency to @sitespeed.io/plugin 1.0.0 or higher.

View File

@ -28,7 +28,7 @@ WORKDIR /usr/src/app
COPY package.json /usr/src/app/
COPY npm-shrinkwrap.json /usr/src/app/
COPY tools/postinstall.js /usr/src/app/tools/postinstall.js
RUN DOWNLOAD_URL2GREEN=true npm install --production && npm cache clean --force
RUN npm install --production && npm cache clean --force
COPY . /usr/src/app
COPY docker/scripts/start.sh /start.sh