BOLT-1647; Array support in Cloud Integration Ecosystem
This commit is contained in:
parent
570d79c48c
commit
1736dd71fb
|
|
@ -0,0 +1,5 @@
|
|||
FROM node:24-alpine
|
||||
WORKDIR /app
|
||||
COPY package.json ./
|
||||
COPY index.js ./
|
||||
CMD ["node", "index.js"]
|
||||
|
|
@ -56,7 +56,7 @@ app: sample-git-template
|
|||
build:
|
||||
builtin: dockerfile
|
||||
ignorefile: .gitignore
|
||||
language: nodejs/18
|
||||
language: nodejs/24
|
||||
region: asia-south1
|
||||
serverlessConfig:
|
||||
Scaling:
|
||||
|
|
|
|||
|
|
@ -0,0 +1,8 @@
|
|||
{
|
||||
"name": "sample-git-template",
|
||||
"version": "1.0.0",
|
||||
"main": "index.js",
|
||||
"scripts": {
|
||||
"start": "node index.js"
|
||||
}
|
||||
}
|
||||
Loading…
Reference in New Issue
Block a user