add nodejs to images
All checks were successful
Build images / check-docker (push) Successful in 35s
Build images / build-and-push (push) Successful in 1m16s

This commit is contained in:
Julius Zeidler 2025-04-10 13:31:37 +02:00
parent 367d8bf588
commit 380d18c806
2 changed files with 3 additions and 3 deletions

View file

@ -1,7 +1,7 @@
FROM alpine
RUN apk update && \
apk add --no-cache curl jq bash git coreutils zip openssh zsh && \
apk add --no-cache curl jq bash git coreutils zip openssh zsh nodejs npm yarn && \
rm -rf /var/cache/apk/*
CMD [ "zsh" ]

View file

@ -1,5 +1,5 @@
FROM ubuntu
RUN apt-get -y update && \
apt-get install -y curl jq bash git zsh docker
apt-get install -y curl jq bash git zsh docker nodejs npm yarn
CMD [ "zsh" ]