mirror of
https://github.com/moby/moby.git
synced 2022-11-09 12:21:53 -05:00
327421d1df
Signed-off-by: Jessica Frazelle <acidburn@docker.com>
8 lines
225 B
Bash
8 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
|