Hi!
I’m following through the getting started guide for Node.js on RPi.
Pushing to balenaCloud works fine – the simple-server-node app runs on the device.
But enabling local mode and doing a balena push <ip>
from the simple-server-node directory, not so much:
$ balena push 10.0.0.139
[debug] original argv0="/usr/local/lib/balena-cli/bin/node" argv=[/usr/local/lib/balena-cli/bin/node,/usr/local/lib/balena-cli/bin/run,push,10.0.0.139] length=4
[debug] Using . as build source
[Debug] Checking we can access device
[Debug] Sending request to http://10.0.0.139:48484/ping
[Debug] Checking device version: 9.14.0
[Info] Starting build on device 10.0.0.139
[Debug] Loading project...
[Debug] Resolving project...
[Debug] Failed to resolve project:
[Debug] AggregateError of:
[Debug] Error: ENOENT: no such file or directory, open 'docker-compose.yml'
[Debug] Error: ENOENT: no such file or directory, open 'docker-compose.yaml'
[Info] Creating default composition with source: .
[Debug] Creating project...
[Debug] Tarring all non-ignored files...
[Debug] Sending request to http://10.0.0.139:48484/v2/local/device-info
[Debug] Found build tasks:
[Debug] main: build [.]
[Debug] Resolving services with [raspberry-pi|rpi]
[Debug] Found project types:
[Debug] main: Dockerfile.template
[Debug] Probing remote daemon for cache images
[Debug] Using 6 on-device images for cache...
[Debug] Starting builds...
[Build] [main] Step 1/8 : FROM balenalib/raspberry-pi-node:10-stretch-run
[Build] [main] ---> 1def9448c64f
[Build] [main] Step 2/8 : WORKDIR /usr/src/app
[Build] [main] ---> Using cache
[Build] [main] ---> c04250a85461
[Build] [main] Step 3/8 : COPY package.json package.json
[Build] [main] ---> Using cache
[Build] [main] ---> 8a6125c189bd
[Build] [main] Step 4/8 : RUN JOBS=MAX npm install --production --unsafe-perm && npm cache verify && rm -rf /tmp/*
[Build] [main] ---> Using cache
[Build] [main] ---> 769314d83375
[Build] [main] Step 5/8 : COPY . ./
[Build] [main] ---> Using cache
[Build] [main] ---> a6046d4396ff
[Build] [main] Step 6/8 : ENV UDEV=1
[Build] [main] ---> Using cache
[Build] [main] ---> 67bd83e1c222
[Build] [main] Step 7/8 : CMD ["npm", "start"]
[Build] [main] ---> Using cache
[Build] [main] ---> 613579ac935a
[Build] [main] Step 8/8 : LABEL "io.resin.local.image"='1' "io.resin.local.service"='main'
[Build] [main] ---> Using cache
[Build] [main] ---> 3dde7641d8ea
[Build] [main] Successfully built 3dde7641d8ea
[Build] [main] Successfully tagged local_image_main:latest
SecretRemovalError: The command '/bin/sh -c apk update && apk add bash jq' returned a non-zero code: 139
at Object.<anonymous> (/usr/local/lib/balena-cli/node_modules/resin-multibuild/build/index.js:124:19)
at Generator.throw (<anonymous>)
at rejected (/usr/local/lib/balena-cli/node_modules/resin-multibuild/build/index.js:5:65)
I haven’t dug deeper into this as running off balenaCloud is plenty fun enough for now… but, any ideas?
Thanks!