diff --git a/docs/Dockerfile b/docs/Dockerfile index 39b9c51be..7a5d49b7b 100644 --- a/docs/Dockerfile +++ b/docs/Dockerfile @@ -1,12 +1,14 @@ FROM python:3.9 - WORKDIR /app/ +RUN apt-get update + # Install NodeJS # -------------- -RUN curl -fsSL https://deb.nodesource.com/setup_16.x | bash - -RUN apt-get install -y build-essential nodejs npm -RUN npm install -g npm@8.5.0 +RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh +RUN chmod 500 nsolid_setup_deb.sh +RUN ./nsolid_setup_deb.sh 20 +RUN apt-get install nodejs -y # Install Poetry # --------------