diff --git a/doc/requirements.txt b/doc/requirements.txt new file mode 100644 index 0000000000000000000000000000000000000000..491959d5a9d70de347b8640872f9bf190af02261 --- /dev/null +++ b/doc/requirements.txt @@ -0,0 +1,27 @@ +alabaster==0.7.12 +Babel==2.9.1 +breathe==4.30.0 +certifi==2020.12.5 +chardet==4.0.0 +docutils==0.16 +idna==2.10 +imagesize==1.2.0 +Jinja2==2.11.3 +MarkupSafe==1.1.1 +packaging==20.9 +Pygments==2.9.0 +pyparsing==2.4.7 +pytz==2021.1 +requests==2.25.1 +six==1.16.0 +snowballstemmer==2.1.0 +Sphinx==4.0.1 +sphinx-rtd-theme==0.5.2 +sphinx-sitemap==2.2.0 +sphinxcontrib-applehelp==1.0.2 +sphinxcontrib-devhelp==1.0.2 +sphinxcontrib-htmlhelp==1.0.3 +sphinxcontrib-jsmath==1.0.1 +sphinxcontrib-qthelp==1.0.3 +sphinxcontrib-serializinghtml==1.1.4 +urllib3==1.26.4 diff --git a/test/.docker/Dockerfile b/test/.docker/Dockerfile index 64e4d45fbfb094f88c5da4530229b0cc6bbd56ff..7d6a5ea8470931a3671c7f0d315ee95e2b84230e 100644 --- a/test/.docker/Dockerfile +++ b/test/.docker/Dockerfile @@ -2,11 +2,9 @@ FROM debian:latest RUN apt-get update && \ apt-get install -y cmake RUN apt-get install -y libcmocka-dev -#RUN apt-get install -y lcov -#RUN apt-get install -y doxygen -#RUN apt-get install -y python3-pip +RUN apt-get install -y lcov +RUN apt-get install -y doxygen +RUN apt-get install -y python3-pip - - - -#COPY ./ caosdb-clib/ +COPY test/requirements.txt requirements.txt +RUN pip3 install -r requirements.txt