File tree 2 files changed +22
-1
lines changed
2 files changed +22
-1
lines changed Original file line number Diff line number Diff line change @@ -14,9 +14,13 @@ RUN apt-get update \
14
14
&& apt-get -y install --no-install-recommends build-essential npm \
15
15
&& apt-get autoremove -y \
16
16
&& apt-get clean -y \
17
- && rm -rf /var/lib/apt/lists/*
17
+ && wget https://github.com/quarto-dev/quarto-cli/releases/download/v1.4.549/quarto-1.4.549-linux-amd64.deb \
18
+ && dpkg -i quarto-1.4.549-linux-amd64.deb \
19
+ && rm -rf /var/lib/apt/lists/* quarto-1.4.549-linux-amd64.deb
18
20
ENV DEBIAN_FRONTEND=dialog
19
21
20
22
# For docs
21
23
RUN npm install --global yarn
22
24
RUN pip install pydoc-markdown
25
+ RUN pip install pyyaml
26
+ RUN pip install colored
Original file line number Diff line number Diff line change
1
+ #
2
+ # This script generates documentation using pydoc-markdown and renders the website using Quarto.
3
+ #
4
+ # Usage: bash build_website.sh
5
+ #
6
+
7
+ # Generate documentation using pydoc-markdown
8
+ pydoc-markdown
9
+
10
+ # Render the website using Quarto
11
+ quarto render ./docs
12
+
13
+ # Process notebooks using a Python script
14
+ python ./process_notebooks.py
15
+
16
+ # Start the website using yarn
17
+ yarn start
You can’t perform that action at this time.
0 commit comments