Skip to content

Commit f54c408

Browse files
authored
Merge pull request #1007 from thaJeztah/disable_seccomp
[master] disable seccomp to prevent tar EPERM (Ubuntu 24.04 armhf on 20.04 host)
2 parents 9922aa4 + 07b5d90 commit f54c408

File tree

1 file changed

+5
-0
lines changed

1 file changed

+5
-0
lines changed

deb/Makefile

Lines changed: 5 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -27,7 +27,12 @@ BUILD?=DOCKER_BUILDKIT=1 \
2727

2828
# Additional flags may be necessary at some point
2929
RUN_FLAGS=
30+
31+
# FIXME(thaJeztah): disabling seccomp to handle (armhf) tar "chown / chmod" failing
32+
# when running in a Ubuntu 24.04 container on a Ubuntu 20.04.6 host (kernel 5.15.0-1053-aws);
33+
# see https://github.com/docker/docker-ce-packaging/pull/1006#issuecomment-2006878743
3034
RUN?=docker run --rm \
35+
--security-opt seccomp=unconfined \
3136
-e PLATFORM \
3237
-e EPOCH='$(EPOCH)' \
3338
-e DEB_VERSION=$(word 1, $(GEN_DEB_VER)) \

0 commit comments

Comments
 (0)