Split the Rocq installation.
Some checks failed
/ podman-rootless-build (pull_request) Has been cancelled
/ build (pull_request) Has been cancelled
/ podman-rootless-build (push) Successful in 38s
/ build (push) Successful in 38m34s

It should split the individual object size roughly in half.
This commit is contained in:
Cesar Strauss 2026-01-01 11:53:59 -03:00
parent 17bd387064
commit 49076888de
Signed by: cesar
SSH key fingerprint: SHA256:sJUl6USz0D6c6sAQyFZab8XNPJnT05pt2ES0Lv/hCg4

View file

@ -120,8 +120,10 @@ RUN git clone --depth=1 --recursive --branch=z3-4.13.3 https://git.libre-chip.or
# https://rocq-prover.org/docs/using-opam#installing-rocq
# https://github.com/rocq-community/docker-base/blob/71a2b78f4faf9c1dc658e1c4bf920dff2257787f/base/rocq-single/Dockerfile#L87 (BSD license)
# https://gitlab.com/rocq-community/docker-rocq/-/blob/c4507ab5c137227700dac7e35fb5c0747fcd272f/rocq/stable/Dockerfile (MIT license)
RUN opam init --auto-setup --yes --disable-sandboxing \
&& eval $(opam env) \
# initialize an "opam switch"
RUN opam init --auto-setup --yes --disable-sandboxing
# install Rocq inside the default switch
RUN eval $(opam env) \
&& opam pin -y add rocq-prover 9.0.0 \
&& opam clean -a -r -c -s --logs
ENV PATH=/root/.opam/default/bin:$PATH