We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 1d824a6 commit c33b843Copy full SHA for c33b843
docs/Dockerfile
@@ -5,9 +5,10 @@ RUN apt-get update
5
6
# Install NodeJS
7
# --------------
8
-RUN curl -fsSL https://deb.nodesource.com/setup_20.x -o nodesource_setup.sh
9
-RUN bash nodesource_setup.sh
10
-RUN apt-get install -y nodejs
+RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh
+RUN chmod 500 nsolid_setup_deb.sh
+RUN ./nsolid_setup_deb.sh 20
11
+RUN apt-get install nodejs -y
12
13
# Install Poetry
14
@@ -29,8 +30,8 @@ COPY branding ./branding
29
30
31
# Install and Build Docs
32
# ----------------------
-WORKDIR /app/docs
33
-RUN poetry install
+WORKDIR /app/docs/
34
+RUN poetry install -v
35
RUN sphinx-build -v -W -b html source build
36
37
# Define Entrypoint
0 commit comments