Skip to content

Commit

Permalink
Merge pull request #1007 from thaJeztah/disable_seccomp
Browse files Browse the repository at this point in the history
[master] disable seccomp to prevent tar EPERM (Ubuntu 24.04 armhf on 20.04 host)
  • Loading branch information
neersighted committed Mar 19, 2024
2 parents 9922aa4 + 07b5d90 commit f54c408
Showing 1 changed file with 5 additions and 0 deletions.
5 changes: 5 additions & 0 deletions deb/Makefile
Expand Up @@ -27,7 +27,12 @@ BUILD?=DOCKER_BUILDKIT=1 \

# Additional flags may be necessary at some point
RUN_FLAGS=

# FIXME(thaJeztah): disabling seccomp to handle (armhf) tar "chown / chmod" failing
# when running in a Ubuntu 24.04 container on a Ubuntu 20.04.6 host (kernel 5.15.0-1053-aws);
# see https://github.com/docker/docker-ce-packaging/pull/1006#issuecomment-2006878743
RUN?=docker run --rm \
--security-opt seccomp=unconfined \
-e PLATFORM \
-e EPOCH='$(EPOCH)' \
-e DEB_VERSION=$(word 1, $(GEN_DEB_VER)) \
Expand Down

0 comments on commit f54c408

Please sign in to comment.