Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

add alt-ergo 2.6 to the docker image #662

Merged
merged 1 commit into from
Dec 10, 2024
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
add alt-ergo 2.6 to the docker image
fdupress committed Nov 29, 2024
commit 73c3ee2c3bbe19ce7aedf1629d14977d5ba0bc6e
9 changes: 9 additions & 0 deletions scripts/docker/Dockerfile.build
Original file line number Diff line number Diff line change
@@ -15,6 +15,15 @@ COPY --chmod=0755 --chown=1001:0 docker-parts/alt-ergo bin/run-alt-ergo

ENV PATH="/home/charlie/bin:$PATH"

RUN \
version=2.6.0 && \
opam switch create --no-switch alt-ergo-${version} ocaml-system && \
opam pin --switch=alt-ergo-${version} add -n alt-ergo ${version} && \
opam install --switch=alt-ergo-${version} --deps-only --confirm-level=unsafe-yes alt-ergo && \
opam install --switch=alt-ergo-${version} alt-ergo && \
opam clean --switch=alt-ergo-${version} && \
ln -s run-alt-ergo ~/bin/alt-ergo-${version}

RUN \
version=2.5.4 && \
opam switch create --no-switch alt-ergo-${version} ocaml-system && \