Merge pull request 'Addition of NodeJS for Gitea Actions testing' (#11) from testing into release
All checks were successful
continuous-integration/drone/push Build is passing

Reviewed-on: #11
This commit is contained in:
Chris Hammer 2023-12-13 00:33:40 -05:00
commit fa47896f44
4 changed files with 4 additions and 4 deletions

View File

@ -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 install -y python3-pip git ansible-core python3-ansible-lint
RUN dnf update -y \ 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 pip --upgrade \
&& pip install -r /tmp/requirements.txt && pip install -r /tmp/requirements.txt

View File

@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt
RUN apt update \ RUN apt update \
&& apt dist-upgrade -y \ && apt dist-upgrade -y \
&& apt autoremove --purge -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 pip --upgrade \
&& pip install -r /tmp/requirements.txt && pip install -r /tmp/requirements.txt

View File

@ -12,7 +12,7 @@ COPY python/requirements.txt /tmp/requirements.txt
RUN apt update \ RUN apt update \
&& apt dist-upgrade -y \ && apt dist-upgrade -y \
&& apt autoremove --purge -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 pip --upgrade --break-system-packages \
&& pip install -r /tmp/requirements.txt --break-system-packages && pip install -r /tmp/requirements.txt --break-system-packages

View File

@ -11,7 +11,7 @@ COPY conf/dnf.conf /etc/dnf/dnf.conf
COPY python/requirements.txt /tmp/requirements.txt 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 ansible-core python3-ansible-lint
RUN dnf install -y python3-pip git systemd \ RUN dnf install -y python3-pip python3-devel gcc git systemd nodejs \
&& pip install pip --upgrade \ && pip install pip --upgrade \
&& pip install -r /tmp/requirements.txt && pip install -r /tmp/requirements.txt