-
Notifications
You must be signed in to change notification settings - Fork 1
/
Copy pathDockerfile
38 lines (30 loc) · 1.24 KB
/
Dockerfile
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
FROM debian:bookworm-slim
LABEL maintainer="[email protected]"
# Install system packages
RUN apt-get update -yq \
&& DEBIAN_FRONTEND=noninteractive apt-get install -yq --no-install-recommends \
autoconf automake ca-certificates cabal-install git hyperfine \
libghc-optparse-applicative-dev libgmp-dev m4 ocaml-nox opam pkg-config \
python3 rsync sudo time zlib1g-dev \
&& apt-get clean \
&& rm -fr /var/lib/apt/lists/*
# Add coq user and drop root
RUN useradd -lmU -s /bin/bash -G sudo -p '' coq
WORKDIR /home/coq
USER coq
# Install common packages
RUN set -x \
&& opam init -j$(nproc) --compiler ocaml-system --auto-setup --yes --disable-completion --disable-sandboxing \
&& opam repo add --all-switches --set-default coq-released https://coq.inria.fr/opam/released \
&& opam install -vyj$(nproc) dune num ocamlfind zarith conf-findutils conf-gmp opam-depext \
&& opam clean -acrs --logs \
&& opam config list && opam list
ENTRYPOINT ["opam", "exec", "--"]
CMD ["/bin/bash", "--login"]
# Install coq libraries
RUN opam install -vyj$(nproc) coq-iris=4.1.0 coq-equations=1.3+8.17 \
&& opam clean -acrs --logs \
&& opam config list && opam list
# Clone artifact repository
RUN git clone --depth=1 https://github.com/decrn/tilogics.git
WORKDIR tilogics