diff options
author | Christian Poessinger <christian@poessinger.com> | 2021-01-07 23:57:10 +0100 |
---|---|---|
committer | Christian Poessinger <christian@poessinger.com> | 2021-01-07 23:57:10 +0100 |
commit | 9029464252e73c9bee84e2c93c58be5eba29033f (patch) | |
tree | b50efc47951f947e1074f75b3ee865ccb79924ec /docker | |
parent | f81c6e53bdf3ac6684daf8dc258b26d635b207cc (diff) | |
download | vyos-build-9029464252e73c9bee84e2c93c58be5eba29033f.tar.gz vyos-build-9029464252e73c9bee84e2c93c58be5eba29033f.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
Diffstat (limited to 'docker')
-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 |