How can I know which Debian libraries Electron needs to run?

196 Views Asked by At

What I'm doing

I'm building an Electron-based kiosk app using Balena to run on a Raspberry Pi 4. Balena requires a Dockerfile to build the container that will run my app. In that Dockerfile, I must make sure I install all the libraries needed by Electron. The image I'm using is based on Debian Buster (the default image Balena uses).

What I know

I've found two working examples in GitHub similar to what I'm trying to do where I can see which libraries are installed:

And also two files inside the Electron repo that mention required libraries:

What's confusing me

Each list of libraries in the above files is different from the others. I don't know which one I should follow. Also, the build instructions for Linux don't have any list specific for Debian.

My question

How can I know for sure exactly which libraries I need to install in my Debian-based container so that Electron can run?

1

There are 1 best solutions below

1
On

In the example, it should show a Dockerfile that you can use to get the required libraries.