Removes the seccomp buildtag when building runc.
Because seccomp isn't currently being built, this would cause
the build to fail.
Signed-off-by: Christopher Jones <tophj@linux.vnet.ibm.com>
| ... | ... |
@@ -204,7 +204,7 @@ RUN set -x \ |
| 204 | 204 |
&& git clone git://github.com/opencontainers/runc.git "$GOPATH/src/github.com/opencontainers/runc" \ |
| 205 | 205 |
&& cd "$GOPATH/src/github.com/opencontainers/runc" \ |
| 206 | 206 |
&& git checkout -q "$RUNC_COMMIT" \ |
| 207 |
- && make static BUILDTAGS="seccomp apparmor selinux" \ |
|
| 207 |
+ && make static BUILDTAGS="apparmor selinux" \ |
|
| 208 | 208 |
&& cp runc /usr/local/bin/docker-runc |
| 209 | 209 |
|
| 210 | 210 |
# Install containerd |