diff options
author | Paul Bonaud <paul.bonaud@fretlink.com> | 2020-04-22 11:09:14 +0200 |
---|---|---|
committer | Paul Bonaud <paul.bonaud@fretlink.com> | 2020-04-22 11:09:14 +0200 |
commit | bade4db2c65e437626c21f33569f4ea42681685b (patch) | |
tree | 6e47cd5eaa63dd8c3ee73ddcfa23759865e0b08c | |
parent | 341fc1f0bb657c3633bc01194691853883edf730 (diff) | |
download | docker-node-mongotools-bade4db2c65e437626c21f33569f4ea42681685b.tar.gz docker-node-mongotools-bade4db2c65e437626c21f33569f4ea42681685b.tar.zst docker-node-mongotools-bade4db2c65e437626c21f33569f4ea42681685b.zip |
Bump Ruby to 2.6.6 and Dhall to 1.28.0
-rw-r--r-- | Dockerfile | 10 |
1 files changed, 5 insertions, 5 deletions
@@ -17,11 +17,11 @@ RUN apt-get install -y mongodb-org-tools mongodb-org-shell \ | |||
17 | RUN pip3 install 'ansible>=2.8,<2.9' | 17 | RUN pip3 install 'ansible>=2.8,<2.9' |
18 | 18 | ||
19 | # Install modern Ruby | 19 | # Install modern Ruby |
20 | RUN cd /tmp && curl -LO https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.5.tar.gz && \ | 20 | RUN cd /tmp && curl -LO https://cache.ruby-lang.org/pub/ruby/2.6/ruby-2.6.6.tar.gz && \ |
21 | tar -xf ruby-2.6.5.tar.gz && cd ruby-2.6.5 && ./configure | 21 | tar -xf ruby-2.6.6.tar.gz && cd ruby-2.6.6 && ./configure |
22 | RUN cd /tmp/ruby-2.6.5 && make && make install | 22 | RUN cd /tmp/ruby-2.6.6 && make && make install |
23 | 23 | ||
24 | # Install Dhall | 24 | # Install Dhall |
25 | RUN curl -LO https://github.com/dhall-lang/dhall-haskell/releases/download/1.21.0/dhall-json-1.2.7-x86_64-linux.tar.bz2 && \ | 25 | RUN curl -LO https://github.com/dhall-lang/dhall-haskell/releases/download/1.28.0/dhall-json-1.6.0-x86_64-linux.tar.bz2 && \ |
26 | tar -xf dhall-json-1.2.7-x86_64-linux.tar.bz2 && \ | 26 | tar -xf dhall-json-1.6.0-x86_64-linux.tar.bz2 && \ |
27 | mv ./bin/dhall-to-json /usr/bin | 27 | mv ./bin/dhall-to-json /usr/bin |