Closed guiyomh closed 3 years ago
Are you running on docker/alpine?
I see you closed the issue, can you please share the problem/solution for others in the future?
@mefellows, yes I have close the issue because github has create a duplicate issue with https://github.com/pact-foundation/pact-php/issues/198
For future reference – if on alpine, you must install glibc
as follows (not gcompat
– gives missing libcrypt error):
RUN apk --no-cache add bash ca-certificates wget
RUN wget -q -O /etc/apk/keys/sgerrand.rsa.pub https://alpine-pkgs.sgerrand.com/sgerrand.rsa.pub \
&& wget https://github.com/sgerrand/alpine-pkg-glibc/releases/download/2.28-r0/glibc-2.28-r0.apk \
&& apk --no-cache add glibc-2.28-r0.apk
See also https://docs.pact.io/docker.
Hi all,
I have created a test to verify my provider. Something like that:
When I execute my test, I have an error:
What did I do wrong?