RUN apt-get update && \

apt-get -qy full-upgrade && \
    apt-get install -qy curl && \
    curl -sSL https://get.docker.com/ | sh && \
	apt-get install -y maven && \
	apt-get install -y nodejs && \
	apt-get install -y npm
This commit is contained in:
Artur 2025-01-07 14:56:14 +01:00
parent ac4d5189df
commit 0f1801528f
1 changed files with 8 additions and 4 deletions

View File

@ -5,7 +5,11 @@ USER root
RUN apt-get update && \
apt-get -qy full-upgrade && \
apt-get install -qy curl && \
curl -sSL https://get.docker.com/ | sh
RUN apt-get install -y maven
RUN apt install nodejs -y
curl -sSL https://get.docker.com/ | sh && \
apt-get install -y maven && \
apt-get install -y nodejs && \
apt-get install -y npm
RUN git config --global --add safe.directory '*'
USER jenkins