Skip to content

Commit

Permalink
Fix Node to 20.2.x (#351)
Browse files Browse the repository at this point in the history
Node 20.3.x doesn't work with our local versions of Docker so we must lock to 20.2.x for now

[Issue on nodejs/docker-node](nodejs/docker-node#1912)

#patch
  • Loading branch information
gregtyler authored Jun 28, 2023
1 parent 598451a commit 29dd436
Show file tree
Hide file tree
Showing 2 changed files with 12 additions and 1 deletion.
2 changes: 1 addition & 1 deletion docker/sirius-lpa-frontend/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:20.3.1-alpine3.17 as asset-env
FROM node:20.2.0-alpine3.17 as asset-env

WORKDIR /app

Expand Down
11 changes: 11 additions & 0 deletions renovate.json
Original file line number Diff line number Diff line change
Expand Up @@ -6,6 +6,17 @@
"commitMessageAction": "Renovate Update",
"labels": ["Dependencies", "Renovate"],
"packageRules": [
{
"description": [
"Ignore Dockerfile Node upgrades",
"Node 20.3.x doesn't work with our local versions of Docker so we must lock to 20.2.x for now"
],
"matchFiles": ["docker/sirius-lpa-frontend/Dockerfile"],
"matchDatasources": ["docker"],
"matchPackageNames": ["node"],
"matchUpdateTypes": ["minor"],
"enabled": false
},
{
"automerge": true,
"groupName": "Patch & Minor Updates",
Expand Down

0 comments on commit 29dd436

Please sign in to comment.