File tree Expand file tree Collapse file tree 1 file changed +7
-1
lines changed
Expand file tree Collapse file tree 1 file changed +7
-1
lines changed Original file line number Diff line number Diff line change @@ -12,7 +12,7 @@ SHELL ["/bin/bash", "-c"]
1212RUN apt-get update && \
1313 apt-get upgrade -y && \
1414 apt-get install -y wget make git gfortran libomp-18-dev libboost-all-dev clang-18 clang-tools-18 unzip && \
15- apt-get install -y imagemagick vim && \
15+ apt-get install -y imagemagick vim git-lfs && \
1616 wget https://github.com/Kitware/CMake/releases/download/v3.28.0/cmake-3.28.0-linux-x86_64.sh && \
1717 chmod +x cmake-3.28.0-linux-x86_64.sh && \
1818 ./cmake-3.28.0-linux-x86_64.sh --skip-license --prefix=/usr/local && \
@@ -58,6 +58,12 @@ RUN source ~/anaconda3/bin/activate && \
5858# Copy the source code into the container
5959COPY . .
6060
61+ # Run git-lfs pull to get large files
62+ RUN git lfs install && \
63+ git lfs pull && \
64+ git lfs fetch --all \
65+ && git lfs checkout
66+
6167# if we are on a windows host, we need to remove the CRLF characters from all the files
6268# RUN find . -type f -exec sed -i 's/\r$//' {} +
6369RUN if [ "$HOSTOS" = "windows" ]; then \
You can’t perform that action at this time.
0 commit comments