Version of node in Docker image electron-builder:wine not updated
See original GitHub issueAs far as I can understand the version of node.js has been updated in the base Dockerfile of electronuserland/builder
to version 12.13.1
since quite a long time. I assume the concerned Dockerfile is this one.
Yet when I check the version of node with this command (as of 17 December 2019, without any cache):
docker run -ti electronuserland/builder:wine sh -c "node -v"
I get this output:
v11.10.0
According to Docker Hub this tag was published only a few days ago. I assume it is kind of a problem somewhere in the list or Dockerfiles inheriting from each other. Notably the Dockerfile for wine inherits from the electronuserland/builder:latest
image that was not updated since 10 months.
Issue Analytics
- State:
- Created 4 years ago
- Comments:5 (1 by maintainers)
Top Results From Across the Web
Node.js docker container not updating to changes in volume
I think you'll see that the file changes get picked up if you restart node by bouncing the container with docker-compose down then...
Read more >Multi Platform Build - electron-builder
If your app has native dependency, it can be compiled only on the target platform unless prebuild is not used. prebuild is a...
Read more >docker node update
Update metadata about a node, such as its availability, labels, or roles. Note. This is a cluster management command, and must be executed...
Read more >How to Use the Node Docker Official Image
Want to run your new image as a container? Hover over your listed node image ... Docker will build your image from your...
Read more >Build your Node image - Docker Documentation
Learn how to build your first Docker image by writing a Dockerfile. ... Node.js version 12.18 or later. ... It does not create...
Read more >Top Related Medium Post
No results found
Top Related StackOverflow Question
No results found
Troubleshoot Live Code
Lightrun enables developers to add logs, metrics and snapshots to live code - no restarts or redeploys required.
Start FreeTop Related Reddit Thread
No results found
Top Related Hackernoon Post
No results found
Top Related Tweet
No results found
Top Related Dev.to Post
No results found
Top Related Hashnode Post
No results found
Top GitHub Comments
Duplicate https://github.com/electron-userland/electron-builder/issues/4298
I ran into this issue today. What solved for me was to download this repo, run
./docker/build.sh
and then inside the containernode --version
returnedv12.14.1
as it should.