diff options
author | Daniil Baturin <daniil@vyos.io> | 2020-11-12 16:46:10 +0700 |
---|---|---|
committer | GitHub <noreply@github.com> | 2020-11-12 16:46:10 +0700 |
commit | 65e8bd1aefc6e36d047d9962f4d14c962d2c2c12 (patch) | |
tree | b082e9c83f9c63301a20be99f6e2643a8fd5cd30 /docker/Dockerfile | |
parent | 9e6e486d5292919dd614541b54770a0b56b6a6ae (diff) | |
download | vyos-build-65e8bd1aefc6e36d047d9962f4d14c962d2c2c12.tar.gz vyos-build-65e8bd1aefc6e36d047d9962f4d14c962d2c2c12.zip |
Add re (a pure OCaml regex library) to the installation script
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 4f7375e0..18b8a401 100644 --- a/docker/Dockerfile +++ b/docker/Dockerfile @@ -129,7 +129,7 @@ RUN curl https://raw.githubusercontent.com/ocaml/opam/master/shell/install.sh \ opam init --root=/opt/opam --comp=4.09.0 --disable-sandboxing RUN eval $(opam env --root=/opt/opam --set-root) && opam install -y \ - pcre + pcre re RUN eval $(opam env --root=/opt/opam --set-root) && opam install -y \ ctypes.0.16.0 \ |