Signed-off-by: Jessica Frazelle <acidburn@docker.com> Upstream-commit: 327421d1df557e156b29d14359a2bfdc59cfb46f Component: engine
9 lines
225 B
Bash
9 lines
225 B
Bash
#!/bin/bash
|
|
set -e
|
|
|
|
# Build a C binary for cloning a userns for seccomp tests
|
|
# and compile it for target daemon
|
|
if [ "$DOCKER_ENGINE_GOOS" = "linux" ]; then
|
|
docker build -qt syscall-test contrib/syscall-test > /dev/null
|
|
fi
|