From 7462ebe830b256e9e145d133c824de5dfd23045d Mon Sep 17 00:00:00 2001 From: Daniel J Walsh Date: Fri, 3 Aug 2018 07:27:33 -0400 Subject: Vendor in latest github.com/projectatomic/buildah This adds support for Dockerfile.in and fixes some limits issues on docker build Also adds support for podman build to read Dockerfile from stdin. cat Dockerfile | podman build -f - . Signed-off-by: Daniel J Walsh Closes: #1209 Approved by: mheon --- vendor/github.com/projectatomic/buildah/util/types.go | 5 +++++ 1 file changed, 5 insertions(+) (limited to 'vendor/github.com/projectatomic/buildah/util') diff --git a/vendor/github.com/projectatomic/buildah/util/types.go b/vendor/github.com/projectatomic/buildah/util/types.go index 974b707fb..dc5f4b6c8 100644 --- a/vendor/github.com/projectatomic/buildah/util/types.go +++ b/vendor/github.com/projectatomic/buildah/util/types.go @@ -27,4 +27,9 @@ var ( "CAP_SETUID", "CAP_SYS_CHROOT", } + // DefaultNetworkSysctl is the list of Kernel parameters which we + // grant by default to containers which are running under UID 0. + DefaultNetworkSysctl = map[string]string{ + "net.ipv4.ping_group_range": "0 0", + } ) -- cgit v1.2.3-54-g00ecf