Skip to content

Commit

Permalink
sudo make and install of doxygen in docker container
Browse files Browse the repository at this point in the history
  • Loading branch information
chapman39 committed May 31, 2024
1 parent 112002e commit a7cfce9
Show file tree
Hide file tree
Showing 3 changed files with 3 additions and 3 deletions.
2 changes: 1 addition & 1 deletion scripts/docker/dockerfile.in
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN sudo useradd -m -s /bin/bash -G sudo serac
# Install proper doxygen version (should match version in LC host configs)
RUN sudo wget https://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.linux.bin.tar.gz
RUN sudo tar -xf doxygen-1.9.8.linux.bin.tar.gz
RUN cd doxygen-1.9.8 && make && make install && doxygen --version
RUN cd doxygen-1.9.8 && sudo make && sudo make install && doxygen --version

# Remove flags from mpich
RUN sudo sed -i "s/ -flto=auto//g" /usr/bin/mpicxx.mpich
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/dockerfile_clang-14
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN sudo useradd -m -s /bin/bash -G sudo serac
# Install proper doxygen version (should match version in LC host configs)
RUN sudo wget https://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.linux.bin.tar.gz
RUN sudo tar -xf doxygen-1.9.8.linux.bin.tar.gz
RUN cd doxygen-1.9.8 && make && make install && doxygen --version
RUN cd doxygen-1.9.8 && sudo make && sudo make install && doxygen --version

# Remove flags from mpich
RUN sudo sed -i "s/ -flto=auto//g" /usr/bin/mpicxx.mpich
Expand Down
2 changes: 1 addition & 1 deletion scripts/docker/dockerfile_gcc-13
Original file line number Diff line number Diff line change
Expand Up @@ -11,7 +11,7 @@ RUN sudo useradd -m -s /bin/bash -G sudo serac
# Install proper doxygen version (should match version in LC host configs)
RUN sudo wget https://github.com/doxygen/doxygen/releases/download/Release_1_9_8/doxygen-1.9.8.linux.bin.tar.gz
RUN sudo tar -xf doxygen-1.9.8.linux.bin.tar.gz
RUN cd doxygen-1.9.8 && make && make install && doxygen --version
RUN cd doxygen-1.9.8 && sudo make && sudo make install && doxygen --version

# Remove flags from mpich
RUN sudo sed -i "s/ -flto=auto//g" /usr/bin/mpicxx.mpich
Expand Down

0 comments on commit a7cfce9

Please sign in to comment.