Skip to content

Commit

Permalink
Update alpine, node and caniuse-lite (gardener#1201)
Browse files Browse the repository at this point in the history
* update to node 16.15

* pull images from dockerhub

* Updated caniuse-lite to latest version
  • Loading branch information
holgerkoser authored May 9, 2022
1 parent fa4269a commit 977c718
Show file tree
Hide file tree
Showing 15 changed files with 21 additions and 21 deletions.
12 changes: 6 additions & 6 deletions .pnp.js

Some generated files are not rendered by default. Learn more about how customized files appear on GitHub.

Binary file not shown.
Binary file not shown.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -3,7 +3,7 @@
# SPDX-License-Identifier: Apache-2.0

#### Builder ####
FROM eu.gcr.io/gardener-project/3rd/node:16-alpine3.15 as builder
FROM node:16-alpine3.15 as builder

WORKDIR /usr/src/app

Expand Down Expand Up @@ -47,7 +47,7 @@ RUN cp -r frontend/dist /usr/src/build/public \
&& find /usr/src/build/.yarn -mindepth 1 -name cache -prune -o -exec rm -rf {} +

#### Release ####
FROM eu.gcr.io/gardener-project/3rd/alpine:3.15 as release
FROM alpine:3.15 as release

RUN addgroup -g 1000 node && adduser -u 1000 -G node -s /bin/sh -D node
RUN apk add --no-cache tini libstdc++
Expand Down
2 changes: 1 addition & 1 deletion backend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -152,7 +152,7 @@
]
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion charts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@
]
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion constraints.pro
Original file line number Diff line number Diff line change
Expand Up @@ -19,7 +19,7 @@ gen_enforced_dependency(WorkspaceCwd, DependencyIdent, DependencyRange2, Depende
gen_enforced_field(WorkspaceCwd, 'license', 'Apache-2.0').

% This rule will enforce that all packages must have certain engines fields
gen_enforced_field(WorkspaceCwd, 'engines.node', '^16.1.0').
gen_enforced_field(WorkspaceCwd, 'engines.node', '^16.15.0').
gen_enforced_field(WorkspaceCwd, 'engines.yarn', '^2.4.1').

% Required to make the package work with the GitHub Package Registry
Expand Down
2 changes: 1 addition & 1 deletion frontend/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
"webpack": "^4.44.2"
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion package.json
Original file line number Diff line number Diff line change
Expand Up @@ -33,7 +33,7 @@
"node-gyp": "latest"
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion packages/kube-client/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -97,7 +97,7 @@
]
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion packages/kube-config/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -75,7 +75,7 @@
}
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion packages/logger/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -77,7 +77,7 @@
}
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion packages/request/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -90,7 +90,7 @@
]
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
2 changes: 1 addition & 1 deletion packages/test-utils/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -48,7 +48,7 @@
}
},
"engines": {
"node": "^16.1.0",
"node": "^16.15.0",
"yarn": "^2.4.1"
}
}
6 changes: 3 additions & 3 deletions yarn.lock
Original file line number Diff line number Diff line change
Expand Up @@ -4974,9 +4974,9 @@ __metadata:
linkType: hard

"caniuse-lite@npm:^1.0.0, caniuse-lite@npm:^1.0.30001208":
version: 1.0.30001258
resolution: "caniuse-lite@npm:1.0.30001258"
checksum: ef97b5eb31cf99b4a8e895da133c918d4dc606acf55dec6d9bbde4f94e9b2b18bcfc3b105c2d59c68ea0f51dd11fd83ef7b42cb28489c48f486cc49b4dcb7bfb
version: 1.0.30001338
resolution: "caniuse-lite@npm:1.0.30001338"
checksum: 89a907272513f655edeb04a4a496114c3b782d22eead5c5ff2c05a341048f44d9ef2a0914ce3528fc846bb268ce62231d9d6df9eefd01ece95ca61d84bef85e0
languageName: node
linkType: hard

Expand Down

0 comments on commit 977c718

Please sign in to comment.