Skip to content

Commit a80fc88

Browse files
authored
Merge pull request #1013 from thaJeztah/disable_seccomp_rpm
[master] rpm: disable seccomp to prevent tar EPERM (Fedora 40 ppc64le on Debian)
2 parents f1905fd + 01886f5 commit a80fc88

File tree

1 file changed

+6
-0
lines changed

1 file changed

+6
-0
lines changed

rpm/Makefile

Lines changed: 6 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -41,7 +41,13 @@ RPMBUILD_FLAGS?=-ba\
4141

4242
# Additional flags may be necessary at some point
4343
RUN_FLAGS=
44+
45+
# FIXME(thaJeztah): disabling seccomp to handle (ppc64le) tar "chown / chmod"
46+
# failing when running in a Fedora 40 container on a Debian bookworm host;
47+
# see https://github.com/docker/docker-ce-packaging/issues/1012 and
48+
# https://github.com/docker/docker-ce-packaging/pull/1006#issuecomment-2006878743
4449
RUN?=docker run --rm \
50+
--security-opt seccomp=unconfined \
4551
-e PLATFORM \
4652
-v $(CURDIR)/rpmbuild/SOURCES:/root/rpmbuild/SOURCES:ro \
4753
-v $(CURDIR)/rpmbuild/$@/RPMS:/root/rpmbuild/RPMS \

0 commit comments

Comments
 (0)