From ffcd623f502d4961ceb3732f7ca60a14add4c49d Mon Sep 17 00:00:00 2001 From: Ed Alderman Date: Sat, 14 Dec 2024 17:53:02 -0500 Subject: [PATCH] Add missing && to orbit/Containerfile Added a trailing && to orbit/Containerfile to prevent the colon on the next line from being interpreted as an argument to ./db.py Signed-off-by: Ed Alderman --- orbit/Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/orbit/Containerfile b/orbit/Containerfile index 231f9c3f..f083a0d7 100644 --- a/orbit/Containerfile +++ b/orbit/Containerfile @@ -36,7 +36,7 @@ COPY --from=mailman_source . ./mailman COPY --from=denis_source . ./denis RUN mkdir -p /var/lib/orbit/ && \ - ./db.py \ + ./db.py && \ : COPY cgitrc /etc/cgitrc