Skip to content
Advertisement

Gluonfx build using docker fails, with error: Cannot run program “ie4uinit”: CreateProcess error=2, The system cannot find the file specified

I’m building a native image using the Gluonfx plugin. I’m doing this procedure inside a docker container. The image builds the 7 steps, but doing the link throws an error complaining about missing ie4uinit.exe.

These are the error logs:

JavaScript

I would like to know if it’s possible to add this dependency to my docker image. Or, if not possible, a possible way to suppress the use of it in gluonfx through configuration.

Docker image:

JavaScript

Advertisement

Answer

Finally found the solution: Changing the base docker image to: mcr.microsoft.com/windows:1809-amd64

This one contains the necessary dependencies to complete the build process. This is finally my Dockerfile (Anyways, if you know a lighter image or docker configuration to perform the build with gluonfx, please post in the comments. I will appreciate):

JavaScript
User contributions licensed under: CC BY-SA
7 People found this is helpful
Advertisement