Skip to content

Commit c33b843

Browse files
committed
Attempt at fixing poetry install
1 parent 1d824a6 commit c33b843

File tree

1 file changed

+6
-5
lines changed

1 file changed

+6
-5
lines changed

docs/Dockerfile

Lines changed: 6 additions & 5 deletions
Original file line numberDiff line numberDiff line change
@@ -5,9 +5,10 @@ RUN apt-get update
55

66
# Install NodeJS
77
# --------------
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
8+
RUN curl -SLO https://deb.nodesource.com/nsolid_setup_deb.sh
9+
RUN chmod 500 nsolid_setup_deb.sh
10+
RUN ./nsolid_setup_deb.sh 20
11+
RUN apt-get install nodejs -y
1112

1213
# Install Poetry
1314
# --------------
@@ -29,8 +30,8 @@ COPY branding ./branding
2930

3031
# Install and Build Docs
3132
# ----------------------
32-
WORKDIR /app/docs
33-
RUN poetry install
33+
WORKDIR /app/docs/
34+
RUN poetry install -v
3435
RUN sphinx-build -v -W -b html source build
3536

3637
# Define Entrypoint

0 commit comments

Comments
 (0)