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
The docker images built using Dockerfile.reva and Dockerfile.revad end in an error:
standard_init_linux.go:211: exec user process caused "no such file or directory"
The cause seems to the compiled reva and revad binaries are not statically linked.
Adding env CGO_ENABLED lets the compiler generate a statically linked binary. After this change, running the docker image results in
nothing to do, no grpc/http enabled_services declared in config
which makes sense because the passed configuration file is empty.
The text was updated successfully, but these errors were encountered:
SamuAlfageme
No branches or pull requests
The docker images built using Dockerfile.reva and Dockerfile.revad end in an error:
The cause seems to the compiled reva and revad binaries are not statically linked.
Adding env CGO_ENABLED lets the compiler generate a statically linked binary.
After this change, running the docker image results in
which makes sense because the passed configuration file is empty.
The text was updated successfully, but these errors were encountered: