From 60dbde87befd6c4299e9d4091da52736c4fe2a17 Mon Sep 17 00:00:00 2001 From: jpic Date: Sun, 26 Jan 2020 13:11:57 +0100 Subject: [PATCH] Try as root inside the container --- pod.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/pod.py b/pod.py index 4716740..e5baa11 100644 --- a/pod.py +++ b/pod.py @@ -9,7 +9,7 @@ from podctl import * podctl = Container( Base('docker.io/centos'), Packages('podman', 'buildah', 'python3'), - User('app', 1000, '/app'), + #User('app', 1000, '/app'), Copy(['setup.py', 'podctl'], '/app'), Pip('/app'), Config(cmd='podctl', author='jpic'),