From 61d3e330beb9c2a8bd557ef3872aa6595c76b1b2 Mon Sep 17 00:00:00 2001 From: "Jorge O. Castro" Date: Sat, 25 Feb 2023 11:07:51 -0500 Subject: [PATCH] feat: nicer filter to allow commenting out apps (#15) Co-authored-by: @fossrob --- Containerfile | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/Containerfile b/Containerfile index a92be03..8eaebc8 100644 --- a/Containerfile +++ b/Containerfile @@ -8,7 +8,7 @@ LABEL com.github.containers.toolbox="true" \ COPY extra-packages / RUN apk update && \ apk upgrade && \ - cat /extra-packages | xargs apk add + grep -v '^#' /extra-packages | xargs apk add RUN rm /extra-packages RUN ln -fs /bin/sh /usr/bin/sh && \