BOLT-1647; Array support in Cloud Integration Ecosystem

This commit is contained in:
Ahmed Sakri 2026-04-22 08:11:18 +05:30
parent 570d79c48c
commit 1736dd71fb
3 changed files with 14 additions and 1 deletions

5
Dockerfile Normal file
View File

@ -0,0 +1,5 @@
FROM node:24-alpine
WORKDIR /app
COPY package.json ./
COPY index.js ./
CMD ["node", "index.js"]

View File

@ -56,7 +56,7 @@ app: sample-git-template
build:
builtin: dockerfile
ignorefile: .gitignore
language: nodejs/18
language: nodejs/24
region: asia-south1
serverlessConfig:
Scaling:

8
package.json Normal file
View File

@ -0,0 +1,8 @@
{
"name": "sample-git-template",
"version": "1.0.0",
"main": "index.js",
"scripts": {
"start": "node index.js"
}
}