From aea1e2bb749df9bb607bd716bce3f1ee3efb448d Mon Sep 17 00:00:00 2001 From: jpic Date: Sun, 26 Jan 2020 18:10:30 +0100 Subject: [PATCH] Use podman as base --- pod.py | 5 ++--- 1 file changed, 2 insertions(+), 3 deletions(-) diff --git a/pod.py b/pod.py index e5baa11..896b1c1 100644 --- a/pod.py +++ b/pod.py @@ -7,9 +7,8 @@ from podctl import * podctl = Container( - Base('docker.io/centos'), - Packages('podman', 'buildah', 'python3'), - #User('app', 1000, '/app'), + Base('quay.io/podman/stable'), + Packages('python3', 'buildah'), Copy(['setup.py', 'podctl'], '/app'), Pip('/app'), Config(cmd='podctl', author='jpic'),