This file contains hidden or bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
FROM ubuntu:20.04 AS redisjson | |
RUN apt-get update | |
RUN apt-get upgrade -y git | |
RUN apt-get install -y curl gcc | |
RUN apt-get install -y libclang-dev | |
WORKDIR / | |
RUN curl --proto '=https' --tlsv1.2 -sSf https://sh.rustup.rs -o install-rust.sh && sh ./install-rust.sh -y | |
RUN git clone https://github.com/RedisJSON/RedisJSON.git --branch v2.4.4 |