File tree 3 files changed +13
-3
lines changed
3 files changed +13
-3
lines changed Original file line number Diff line number Diff line change @@ -10,10 +10,20 @@ LABEL youtube="https://www.youtube.com/channel/UCCCv8Glpb2dq2mhUj5mcHCQ"
10
10
LABEL linkedin="https://www.linkedin.com/company/one-off-coder"
11
11
12
12
ENV NJOBS=8
13
+ ENV CONDA_HOME=/root/anaconda3
14
+ ENV PATH=${CONDA_HOME}/bin:${PATH}
13
15
16
+ # ubuntu
14
17
RUN apt-get update -y \
15
18
&& apt-get upgrade -y \
16
- && apt-get -y install build-essential cmake libboost-all-dev gcc clang gdb libblkid-dev e2fslibs-dev libaudit-dev valgrind ninja-build doxygen graphviz mscgen dia lcov
19
+ && apt-get -y install build-essential cmake libboost-all-dev gcc clang gdb libblkid-dev e2fslibs-dev libaudit-dev valgrind ninja-build doxygen graphviz mscgen dia lcov wget
20
+
21
+ # anaconda
22
+ RUN wget -q https://repo.anaconda.com/archive/Anaconda3-2020.02-Linux-x86_64.sh -O /tmp/anaconda.sh \
23
+ && /bin/bash /tmp/anaconda.sh -b -p $CONDA_HOME \
24
+ && conda update --all \
25
+ && conda install -y sphinx sphinx_rtd_theme breathe -c conda-forge \
26
+ && pip install sphinx-sitemap
17
27
18
28
RUN mkdir /project
19
29
WORKDIR /project
Original file line number Diff line number Diff line change 2
2
3
3
ORGANIZATION=oneoffcoder
4
4
REPOSITORY=cpp-cicd
5
- VERSION=0.0.3
5
+ VERSION=0.0.4
6
6
IMAGEID=cpp-cicd:local
7
7
8
8
docker tag ${IMAGEID} ${ORGANIZATION} /${REPOSITORY} :${VERSION}
Original file line number Diff line number Diff line change @@ -7,4 +7,4 @@ make clean
7
7
make -j $NJOBS
8
8
make ccov-all -j $NJOBS
9
9
ctest -T memcheck -j $NJOBS
10
- make doc
10
+ make Doxygen Sphinx
You can’t perform that action at this time.
0 commit comments