2017-01-31 04:26:57 -05:00
|
|
|
# Pin the base image to a specific hash for maximum reproducibility.
|
2020-10-26 11:19:30 -04:00
|
|
|
# It will probably still work on newer images, though, unless an update
|
2017-01-31 04:26:57 -05:00
|
|
|
# changes some compiler optimisations (unlikely).
|
2023-04-18 05:46:45 -04:00
|
|
|
# bookworm-slim
|
|
|
|
FROM debian@sha256:07c6cb2ae86479dcc1942a89b0a1f4049b6e9415f7de327ff641aed58b8e3100
|
|
|
|
# and set the package source to a specific release too
|
2023-05-16 05:18:34 -04:00
|
|
|
RUN printf "deb [check-valid-until=no] http://snapshot.notset.fr/archive/debian/20230418T024659Z bookworm main" > /etc/apt/sources.list
|
2022-08-09 08:16:16 -04:00
|
|
|
|
2023-04-18 05:46:45 -04:00
|
|
|
RUN apt update && apt install --no-install-recommends --no-install-suggests -y wget ca-certificates git patch unzip bzip2 make gcc g++ libc-dev
|
2023-07-05 11:06:00 -04:00
|
|
|
RUN wget -O /usr/bin/opam https://github.com/ocaml/opam/releases/download/2.1.5/opam-2.1.5-i686-linux && chmod 755 /usr/bin/opam
|
2017-01-28 08:44:21 -05:00
|
|
|
|
2022-11-13 06:22:59 -05:00
|
|
|
ENV OPAMROOT=/tmp
|
|
|
|
ENV OPAMCONFIRMLEVEL=unsafe-yes
|
2017-01-28 08:44:21 -05:00
|
|
|
# Pin last known-good version for reproducible builds.
|
2017-01-31 04:26:57 -05:00
|
|
|
# Remove this line (and the base image pin above) if you want to test with the
|
|
|
|
# latest versions.
|
2023-04-18 05:46:45 -04:00
|
|
|
RUN opam init --disable-sandboxing -a --bare https://github.com/ocaml/opam-repository.git#28b35f67988702df5018fbf30d1c725734425670
|
|
|
|
RUN opam switch create myswitch 4.14.1
|
2022-11-13 06:22:59 -05:00
|
|
|
RUN opam exec -- opam install -y mirage opam-monorepo ocaml-solo5
|
|
|
|
RUN mkdir /tmp/orb-build
|
|
|
|
ADD config.ml /tmp/orb-build/config.ml
|
|
|
|
WORKDIR /tmp/orb-build
|
|
|
|
CMD opam exec -- sh -exc 'mirage configure -t xen --allocation-policy=best-fit && make depend && make tar'
|