qubes-mirage-firewall/Dockerfile

21 lines
995 B
Docker
Raw Normal View History

# Pin the base image to a specific hash for maximum reproducibility.
# It will probably still work on newer images, though, unless an update
# changes some compiler optimisations (unlikely).
2022-08-29 09:31:44 +00:00
# fedora-35-ocaml-4.14
2022-08-09 12:16:16 +00:00
FROM ocaml/opam@sha256:68b7ce1fd4c992d6f3bfc9b4b0a88ee572ced52427f0547b6e4eb6194415f585
ENV PATH="${PATH}:/home/opam/.opam/4.14/bin"
# Since mirage 4.2 we must use opam version 2.1 or later
2022-08-29 09:31:44 +00:00
RUN sudo ln -sf /usr/bin/opam-2.1 /usr/bin/opam
# Pin last known-good version for reproducible builds.
# Remove this line (and the base image pin above) if you want to test with the
# latest versions.
2022-10-27 09:24:59 +00:00
RUN cd /home/opam/opam-repository && git fetch origin master && git reset --hard 7b89f6e5c24cf4076252e71abcbbe4d205705627 && opam update
2022-08-09 12:16:16 +00:00
RUN opam install -y mirage opam-monorepo
2017-01-09 16:45:16 +00:00
RUN mkdir /home/opam/qubes-mirage-firewall
ADD config.ml /home/opam/qubes-mirage-firewall/config.ml
WORKDIR /home/opam/qubes-mirage-firewall
CMD opam exec -- mirage configure -t xen && make depend && make tar