I’m trying to create a custom Dockerfile for my nodejs application based of the nodejs base images.
It seems that I’m not able to test it on a local docker installation … is that normal ?
I know that my app is working as a NodeJS application, without the dockerfile, but I would love to get it working with the Dockerfile.
I did some further investigation… and tried a docker installation on my Beaglebone Black. Tried to use my Dockerfile on that “installation” … and it seems that that’s working …
So it has something to do with my X64 environment … Is there someone who could help me ? Give me some tips where to look at ?
Hey there – the issue is to do with the base layer that’s used in the dockerfile. The layer is compiled for ARM, so it won’t work on your PC. If, however, you replaced it with an equivalent layer that works on x86-64, there’s a good chance it would work.
but using the qemu … you should be able to run an arm - container on a x64 environment … which I already did … but i can’t seem to get it working with resin’s base images …