Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension


Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
10 changes: 9 additions & 1 deletion javascript/Dockerfile
Original file line number Diff line number Diff line change
@@ -1,4 +1,12 @@
FROM node:16.19-alpine
{{#image}}
FROM {{{.}}}
{{/image}}

{{^image}}
FROM node:18.12-alpine
{{/image}}



{{#build_deps}}
RUN apk add {{{.}}}
Expand Down
2 changes: 1 addition & 1 deletion javascript/chubbyts-uwebsockets/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -4,6 +4,6 @@
"@chubbyts/chubbyts-framework-router-path-to-regexp": "*",
"@chubbyts/chubbyts-http": "*",
"@chubbyts/chubbyts-uwebsockets-http-bridge": "*",
"@types/node": "16"
"@types/node": "18"
}
}
2 changes: 1 addition & 1 deletion javascript/chubbyts/package.json
Original file line number Diff line number Diff line change
Expand Up @@ -3,6 +3,6 @@
"@chubbyts/chubbyts-framework": "~1.6.1",
"@chubbyts/chubbyts-framework-router-path-to-regexp": "*",
"@chubbyts/chubbyts-http": "*",
"@types/node": "16"
"@types/node": "18"
}
}
2 changes: 1 addition & 1 deletion javascript/config.yaml
Original file line number Diff line number Diff line change
@@ -1,3 +1,3 @@
provider:
default:
language: 16.19
language: 18.12
2 changes: 2 additions & 0 deletions javascript/fyrejet-uwebsockets/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ framework:
github: fyrejet/fyrejet
version: 4.0

image: node:16.19-alpine

build_deps:
- git

Expand Down
2 changes: 2 additions & 0 deletions javascript/naturaljs-router/config.yaml
Original file line number Diff line number Diff line change
Expand Up @@ -2,6 +2,8 @@ framework:
github: jesusvilla/natural
version: 0.1.1

image: node:16.19-alpine

build_deps:
- git

Expand Down