Update to Node 14 in Dockerfiles

pull/559/head
pabloFuente 2020-11-16 18:25:10 +01:00
parent df5e4db2ba
commit 51d224b40b
2 changed files with 2 additions and 2 deletions

View File

@ -17,7 +17,7 @@ RUN sed -i "s/DAEMON_USER=\"kurento\"/DAEMON_USER=\"root\"/g" /etc/default/kuren
# Install Node
RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt-get install -y nodejs
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get install -y nodejs
# Java 11
RUN apt-get install -y openjdk-11-jdk-headless

View File

@ -17,7 +17,7 @@ RUN sed -i "s/DAEMON_USER=\"kurento\"/DAEMON_USER=\"root\"/g" /etc/default/kuren
# Install Node
RUN apt-get update && apt-get install -y curl
RUN curl -sL https://deb.nodesource.com/setup_12.x | bash - && apt-get install -y nodejs
RUN curl -sL https://deb.nodesource.com/setup_14.x | bash - && apt-get install -y nodejs
# git
RUN apt-get install -y git