Added nodejs and npm to agent
Some checks failed
andreas-personal/jenkins-ssh-docker-agent/pipeline/head There was a failure building this commit

This commit is contained in:
Andreas Fahrecker 2024-03-14 17:40:39 +01:00
parent 619613928d
commit c8060531d6

View File

@ -47,4 +47,8 @@ USER root
#Install OpenSSL #Install OpenSSL
RUN apt-get update RUN apt-get update
RUN apt-get install -y openssl RUN apt-get install -y openssl
#Install Node.js
RUN apt-get update
RUN apt-get install -y nodejs npm