Skip to content

Commit

Permalink
cleanup(docker): reduce parallelism even more when installing dune
Browse files Browse the repository at this point in the history
  • Loading branch information
zshipko committed Apr 11, 2024
1 parent 950e315 commit b9c41bd
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -14,7 +14,7 @@ RUN sudo ln -sf /home/opam/.cargo/bin/rustc /usr/bin/rustc
WORKDIR /home/opam/src
RUN opam repository add opam-repository git+https://github.com/ocaml/opam-repository.git
RUN opam update -y
RUN opam install -j $(nproc) dune -y
RUN opam install -j 1 dune -y
RUN opam install -j $(nproc) opam-monorepo -y
RUN opam repository add dune-universe git+https://github.com/dune-universe/opam-overlays.git
RUN opam monorepo pull
Expand Down

0 comments on commit b9c41bd

Please sign in to comment.