From 009e29b7ed3a7378f547dda1d4f9e96f245cd5fa Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Wed, 13 Dec 2023 00:09:33 -0500 Subject: [PATCH 1/2] Add NodeJS to list of installed packages (for Gitea Actions testing) --- build/Containerfile.centos-stream9 | 2 +- build/Containerfile.debian11 | 2 +- build/Containerfile.debian12 | 2 +- build/Containerfile.fedora39 | 2 +- 4 files changed, 4 insertions(+), 4 deletions(-) diff --git a/build/Containerfile.centos-stream9 b/build/Containerfile.centos-stream9 index fd427d7..af54138 100644 --- a/build/Containerfile.centos-stream9 +++ b/build/Containerfile.centos-stream9 @@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt # RUN dnf install -y python3-pip git ansible-core python3-ansible-lint RUN dnf update -y \ - && dnf install -y python3-pip git systemd \ + && dnf install -y python3-pip git systemd nodejs \ && pip install pip --upgrade \ && pip install -r /tmp/requirements.txt diff --git a/build/Containerfile.debian11 b/build/Containerfile.debian11 index 0beff5e..03e041a 100644 --- a/build/Containerfile.debian11 +++ b/build/Containerfile.debian11 @@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt RUN apt update \ && apt dist-upgrade -y \ && apt autoremove --purge -y \ - && apt install -y python3-pip git systemd \ + && apt install -y python3-pip git systemd nodejs \ && pip install pip --upgrade \ && pip install -r /tmp/requirements.txt diff --git a/build/Containerfile.debian12 b/build/Containerfile.debian12 index 405da09..9e57f54 100644 --- a/build/Containerfile.debian12 +++ b/build/Containerfile.debian12 @@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt RUN apt update \ && apt dist-upgrade -y \ && apt autoremove --purge -y \ - && apt install -y python3-pip git systemd \ + && apt install -y python3-pip git systemd nodejs \ && pip install pip --upgrade --break-system-packages \ && pip install -r /tmp/requirements.txt --break-system-packages diff --git a/build/Containerfile.fedora39 b/build/Containerfile.fedora39 index 3c07e5e..9bbc6b8 100644 --- a/build/Containerfile.fedora39 +++ b/build/Containerfile.fedora39 @@ -11,7 +11,7 @@ COPY conf/dnf.conf /etc/dnf/dnf.conf COPY python/requirements.txt /tmp/requirements.txt # RUN dnf install -y python3-pip git ansible-core python3-ansible-lint -RUN dnf install -y python3-pip git systemd \ +RUN dnf install -y python3-pip git systemd nodejs \ && pip install pip --upgrade \ && pip install -r /tmp/requirements.txt -- 2.47.1 From 269fed994f15904aa2829d6678453a07082ee26c Mon Sep 17 00:00:00 2001 From: Chris Hammer Date: Wed, 13 Dec 2023 00:25:51 -0500 Subject: [PATCH 2/2] add python3-devel + gcc --- build/Containerfile.fedora39 | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/build/Containerfile.fedora39 b/build/Containerfile.fedora39 index 9bbc6b8..3a425c3 100644 --- a/build/Containerfile.fedora39 +++ b/build/Containerfile.fedora39 @@ -11,7 +11,7 @@ COPY conf/dnf.conf /etc/dnf/dnf.conf COPY python/requirements.txt /tmp/requirements.txt # RUN dnf install -y python3-pip git ansible-core python3-ansible-lint -RUN dnf install -y python3-pip git systemd nodejs \ +RUN dnf install -y python3-pip python3-devel gcc git systemd nodejs \ && pip install pip --upgrade \ && pip install -r /tmp/requirements.txt -- 2.47.1