Skip to content

Commit

Permalink
bump node
Browse files Browse the repository at this point in the history
  • Loading branch information
jackkav committed Jun 25, 2024
1 parent 9d25b99 commit b449afa
Show file tree
Hide file tree
Showing 4 changed files with 12 additions and 6 deletions.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,4 @@
FROM node:21.6.2-bullseye-slim
FROM node:22-bullseye-slim

RUN apt-get update && apt-get install -y --no-install-recommends dumb-init
ENV NODE_ENV production
Expand Down
2 changes: 1 addition & 1 deletion package-lock.json

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

12 changes: 9 additions & 3 deletions package.json
Original file line number Diff line number Diff line change
Expand Up @@ -23,9 +23,15 @@
"testing"
],
"engines": {
"node": ">=21"
"node": ">=22"
},
"files": ["bin", "docs", "src", "lib", "server.js"],
"files": [
"bin",
"docs",
"src",
"lib",
"server.js"
],
"bugs": {
"url": "https://github.com/Kong/mockbin/issues"
},
Expand Down Expand Up @@ -68,4 +74,4 @@
"xmlbuilder": "^15.0.0",
"yamljs": "^0.3.0"
}
}
}
2 changes: 1 addition & 1 deletion shell.nix
Original file line number Diff line number Diff line change
Expand Up @@ -2,7 +2,7 @@ with import <nixpkgs> { };

mkShell {
nativeBuildInputs = [
nodejs_21
nodejs_22
biome
];
BIOME_BINARY = "${biome}/bin/biome";
Expand Down

0 comments on commit b449afa

Please sign in to comment.