You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Copy file name to clipboardExpand all lines: Dockerfile
+7-2Lines changed: 7 additions & 2 deletions
Original file line number
Diff line number
Diff line change
@@ -2,10 +2,10 @@ FROM debian:latest
2
2
3
3
RUN apt-get update
4
4
RUN apt-get install -y \
5
-
gawk \
6
5
perl \
7
6
sed \
8
7
git \
8
+
cmake \
9
9
python3 \
10
10
python3-pip \
11
11
pandoc \
@@ -18,7 +18,12 @@ RUN apt-get install -y \
18
18
texlive-bibtex-extra
19
19
20
20
RUN rm /usr/lib/python3.11/EXTERNALLY-MANAGED
21
-
RUN pip install rst2html5
21
+
RUN pip install 'docutils==0.21.2''rst2html5==2.0.1'
22
+
23
+
RUN git config --global --add safe.directory /zips
24
+
25
+
# Use a fork so that we're running pinned code.
26
+
RUN git clone -b develop https://github.com/Electric-Coin-Company/MultiMarkdown-6 && cd MultiMarkdown-6 && make release && cd build && make && make install
0 commit comments