Dockerfile 315 Bytes
Newer Older
BO ZHANG's avatar
BO ZHANG committed
1
2
3
4
5
6
7
8
9
10
11
12
13
14
FROM sphinxdoc/sphinx

RUN apt update && apt install -y git gcc pandoc

WORKDIR /docs
ADD requirements.txt /docs
#ADD csst_design /docs/csst_design

#WORKDIR /docs/csst_design
#RUN python remove_dash.py && \
#    mv csst_* /usr/local/lib/python3.11/site-packages/

WORKDIR /docs
RUN pip3 install -r requirements.txt