We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Unable to run gauge-ruby specs in ruby-alpine container Dockerfile:
FROM ruby:2.5.5-alpine3.10 as deps RUN apk add --update --no-cache \ ruby-dev \ build-base \ pcre-dev \ mariadb-dev \ postgresql-dev \ libxml2-dev \ libxslt-dev \ libffi-dev \ ruby-nokogiri \ curl RUN curl -SsL https://downloads.gauge.org/stable | sh RUN gauge install ruby
Failed to start gauge API: fork/exec bin/gauge-ruby: no such file or directory
The text was updated successfully, but these errors were encountered:
@alexeybakunin you can add libc6-compat and gcompat to resolve the above issue. Example:
libc6-compat
gcompat
RUN apk add --update --no-cache \ libc6-compat \ gcompat
But the real problem with the alpine image would be the compatibility of google-protobuf gem.
Sorry, something went wrong.
@alexeybakunin Any update on this?
Closing this due to inactivity. Feel free to reopen if the issue persists.
negiDharmendra
No branches or pull requests
Description
Unable to run gauge-ruby specs in ruby-alpine container
Dockerfile:
Steps to reproduce:
Expected result:
Actual result:
Failed to start gauge API: fork/exec bin/gauge-ruby: no such file or directory
The text was updated successfully, but these errors were encountered: