r
message has been deleted
y
Assuming looking at the output that this is an alpine container? I believe it isn't supported https://github.com/pact-foundation/pact-net/issues/387#issuecomment-1114365283 You could try a debian stretch which should have all the necessary deps
r
Yes, it's alpine. I tried in on golang:latest and it worked, only had change the binding address. Thanks for the link I figured out I have to build new docker image for pact tests in Ci. Thank for the tip about deban strech.
🙌 2
y
Fab mate, did you find this page in our docs at all? https://docs.pact.io/docker#alpine-linux it is where we will update to state for v3 users , the warning about Alpine, as I imagine it will come up a bit. I wonder if we could actually detect if its running in a container and that container is alpine and put a note to the user, so you wouldn't have to go searching
💯 1
thx for confirming
r
Sadly no, I haven't gotten to the docker section yet. I just started to implement it in container as I just succeed to make the test work on my local machine. Yes, some kind of prompt would be nice.
👍 1
m
I wonder if we could actually detect if its running in a container and that container is alpine and put a note to the user, so you wouldn’t have to go searching
We could do that in the
pact-go install
command. Unfortunately, trying to run the tests is too late with golang (it needs to be able to link to the shared library before the Go code can run, which is obviously too late)