add nodejs to Dockerfile
Some checks failed
Build and push k8s-workflow-image / build (push) Failing after 5s

This commit is contained in:
Chris Ellrich 2025-04-09 22:23:09 +02:00
parent d532217b84
commit 4c91cce887
Signed by: c.ellrich
GPG Key ID: D1850E1719D845AE

View File

@ -21,4 +21,7 @@ RUN . /envfile && \
curl -sLO https://dl.k8s.io/release/v${KUBECTL_VERSION}/bin/linux/${ARCH}/kubectl && \
mv kubectl /usr/bin/kubectl && chmod +x /usr/bin/kubectl
# Install Node.js
RUN apt-get update && apt-get install -y nodejs npm
WORKDIR /apps