Skip to content

Commit

Permalink
Minor update
Browse files Browse the repository at this point in the history
  • Loading branch information
TLCFEM committed Apr 22, 2024
1 parent 0cc19fb commit 2e4156d
Showing 1 changed file with 2 additions and 2 deletions.
4 changes: 2 additions & 2 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -4,7 +4,7 @@ RUN apt-get update -y && apt-get install -y cmake git g++ libtbb-dev libmpfr-dev

RUN git clone --depth 1 https://github.com/TLCFEM/vpmr.git

WORKDIR vpmr
WORKDIR /vpmr

RUN git submodule update --init --recursive
RUN cd eigen && git apply ../patch_size.patch && cd ..
Expand All @@ -13,7 +13,7 @@ RUN mkdir build && cd build && cmake -DCMAKE_BUILD_TYPE=Release .. && make

FROM ubuntu:22.04 as runtime

RUN apt-get update -y && apt-get install -y libtbb12 libmpfr6 libgmp10
RUN apt-get update -y && apt-get install -y libtbb12 libmpfr6 libgmp10 && apt-get clean -y

COPY --from=build /vpmr/build/vpmr /usr/local/bin/vpmr

Expand Down

0 comments on commit 2e4156d

Please sign in to comment.