Posted 14 December 2023, 8:11 am EST
Hi!
I’m currently trying to create docker images for our build pipelines. One problem I came across is that gclm_deploy.exe just does not do anything in the docker container.
If I use it as part of the docker script nothing happens and also if I run the container and then call the executable nothing happens either.
FROM mcr.microsoft.com/windows/servercore:ltsc2022
SHELL ["powershell","-command"]
RUN "Invoke-WebRequest https://cdn.grapecity.com/license/gclm_deploy.exe -OutFile C:\gclm_deploy.exe"
RUN Start-Process -FilePath "C:\gclm_deploy.exe" -Wait
I can copy the whole GrapeCity folder from my own ProgramData without problems (and that is my current workaround), but I can’t get the gclm_deploy.exe itself to do anything inside the Docker container.
Any help would be appreciated.