From 1e8802af97cf97d44da3c8c54bb867939f30dcdf Mon Sep 17 00:00:00 2001 From: Nico640 <29523913+Nico640@users.noreply.github.com> Date: Wed, 4 Sep 2024 22:55:49 +0200 Subject: [PATCH] fix wrong package version --- Dockerfile | 1 + 1 file changed, 1 insertion(+) diff --git a/Dockerfile b/Dockerfile index fdd04d4..11f6e19 100644 --- a/Dockerfile +++ b/Dockerfile @@ -41,6 +41,7 @@ RUN apk add --no-cache --virtual .build-deps python3 g++ vips-dev glib-dev \ && sed -i 's#"@ubnt/icons-5": ".*"#"@ubnt/icons-5": "file:../icons-5"#g' tmp/link-core/package.json \ && sed -i 's#"@ubnt/ui-components": ".*"#"@ubnt/ui-components": "file:../ui-components"#g' tmp/link-core/package.json \ && sed -i 's#"@ubnt/link-core": ".*"#"@ubnt/link-core": "file:./tmp/link-core"#g' package.json \ + && sed -i '$i,"resolutions": { "cheerio": "1.0.0-rc.5" }' package.json \ && rm -rf node_modules \ && CHILD_CONCURRENCY=1 yarn install --production --no-cache --ignore-engines --network-timeout 100000 \ && yarn cache clean \