From 5cc2678a3677af44b47c4c4e769692c7bf466252 Mon Sep 17 00:00:00 2001 From: Debarshi Ray Date: Fri, 14 Sep 2018 16:38:59 +0200 Subject: [PATCH] Dockerfile: Specify a CMD ... as mandated by the Fedora Container Guidelines: https://fedoraproject.org/wiki/Container:Guidelines#CMD_.2F_ENTRYPOINT The same entrypoint is also specified in 'create' because since podman-0.9.1 'podman create ...' doesn't work without a command. See commit fd697274a3c192ab. --- Dockerfile | 2 ++ 1 file changed, 2 insertions(+) diff --git a/Dockerfile b/Dockerfile index 825aa28..25dc53f 100644 --- a/Dockerfile +++ b/Dockerfile @@ -17,3 +17,5 @@ RUN packages=; while read -r package; do packages="$packages $package"; done \