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
When using Podman to build, podman build -t monero . with Rootless containers it will fail due to user ID namespace constraints.
podman build -t monero .
This can be solved by modifying:
monero/contrib/depends/funcs.mk
Line 81 in 365fd45
and appending --no-same-owner to the tar command.
--no-same-owner
tar
$(1)_extract_cmds ?= mkdir -p $$($(1)_extract_dir) && echo "$$($(1)_sha256_hash) $$($(1)_source)" > $$($(1)_extract_dir)/.$$($(1)_file_name).hash && $(build_SHA256SUM) -c $$($(1)_extract_dir)/.$$($(1)_file_name).hash && tar --strip-components=1 --no-same-owner -xf $$($(1)_source)
I'm unsure of what doing this may or may not break in standard build processes though, so I decided not to open a PR to patch for this specific case..
The text was updated successfully, but these errors were encountered:
Successfully merging a pull request may close this issue.
When using Podman to build,
podman build -t monero .
with Rootless containers it will fail due to user ID namespace constraints.This can be solved by modifying:
monero/contrib/depends/funcs.mk
Line 81 in 365fd45
and appending
--no-same-owner
to thetar
command.I'm unsure of what doing this may or may not break in standard build processes though, so I decided not to open a PR to patch for this specific case..
The text was updated successfully, but these errors were encountered: