Compare commits

..

2 Commits

Author SHA1 Message Date
12c75403a0 Merge branch 'master' of https://code.spamasaurus.com/djpbessems/ContainerImage.PackerExtended
All checks were successful
build-image / Semantic Release (Dry-run) (push) Successful in 18s
build-image / Container image (push) Successful in 4m55s
build-image / Semantic Release (push) Successful in 24s
2024-06-06 11:18:20 +10:00
29e242c30c feat: Add nodejs (prereq for majority of actions) 2024-06-06 11:18:18 +10:00

View File

@ -44,6 +44,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
locales \ locales \
make \ make \
netcat-openbsd \ netcat-openbsd \
npm \
openssh-client \ openssh-client \
powershell-lts \ powershell-lts \
# (python3-*) Dependency for installation of Ansible # (python3-*) Dependency for installation of Ansible
@ -59,6 +60,9 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
yamllint && \ yamllint && \
sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \ sed -i '/en_US.UTF-8/s/^# //g' /etc/locale.gen && \
locale-gen && \ locale-gen && \
npm install npm@latest -g && \
npm install n -g && \
n latest && \
pip3 install --upgrade pip && \ pip3 install --upgrade pip && \
pip3 install \ pip3 install \
ansible-core~=2.14.0 \ ansible-core~=2.14.0 \