Jason Dictos

Results 20 comments of Jason Dictos

I've made it work for our purposes using a patch to prevent the error from stopping the coverage flow. In our case we are a wholly statically linked application so...

It appears to just load modules unless you've explicitly excluded them, in my case it would start failing on nt.dll for example. We now specify just our executable as a...

Running into this today on our CODEBUILD Windows 2019 container. Bummer.

This seems related to an issue I posted today: #215 Any other way to get this to work then the above mentioned work around?

This fix has been re-implemented here: https://github.com/concourse/docker-image-resource/pull/364

Related: https://github.com/concourse/docker-image-resource/pull/331

I am working on a fix here: https://github.com/concourse/docker-image-resource/pull/363

This is happening to me as well, the workaround here is to manually 'docker-compose up' before opening in the dev container. ``` [1682 ms] TypeError: Cannot read properties of undefined...

I found another workaround, just use the pre-init command to 'up' ;) e.g. ``` "initializeCommand": "docker compose up -d", ```