diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-07 23:57:10 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-08 17:22:34 +0100 |
commit | 9f4e0bf75f74647b2e3a4d1567297a7932ab72d9 (patch) | |
tree | 401e4884b4868c2ee7bcc28b62ecae7bd31e942f /docker/Dockerfile | |
parent | 02b3aede3371391870b5b7e5416413e79ad878a1 (diff) | |
download | vyos-build-9f4e0bf75f74647b2e3a4d1567297a7932ab72d9.tar.gz vyos-build-9f4e0bf75f74647b2e3a4d1567297a7932ab72d9.zip |
Docker: update OCaml from 4.09.0 -> 4.09.1
This fixes a build with GCC 10 (coming in Debian Bullseye), release notes
available here: https://ocaml.org/releases/4.09.1.html
(cherry picked from commit 9029464252e73c9bee84e2c93c58be5eba29033f)
Diffstat (limited to 'docker/Dockerfile')
-rw-r--r-- | docker/Dockerfile | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/docker/Dockerfile b/docker/Dockerfile index 1a1e1b1b..49531a83 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -115,7 +115,7 @@ RUN dpkg-reconfigure ca-certificates; \ RUN curl https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh \ --output /tmp/opam_install.sh --retry 10 --retry-delay 5 && \ sed -i 's/read BINDIR/BINDIR=""/' /tmp/opam_install.sh && sh /tmp/opam_install.sh && \ - opam init --root=/opt/opam --comp=4.09.0 --disable-sandboxing + opam init --root=/opt/opam --comp=4.09.1 --disable-sandboxing RUN eval $(opam env --root=/opt/opam --set-root) && opam install -y \ pcre re |