We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent 721ab25 commit 15fcf19Copy full SHA for 15fcf19
Dockerfiles/CI/Dockerfile
@@ -6,6 +6,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
6
&& rm -rf /var/lib/apt/lists/*
7
8
ENV PROTOBUF_VER 3.8.0
9
+ENV PATH="/miniconda/bin:${PATH}"
10
11
# NOTE: most of the following assume WORDKIR is '/'
12
RUN set -ex \
@@ -24,4 +25,7 @@ RUN set -ex \
24
25
&& cp ./bin/* /bin/ \
26
# protoc will search for default includes in the path of the binary
27
&& cp -r ./include /bin/ \
- && cd .. && rm -rf protobuf
28
+ && cd .. && rm -rf protobuf \
29
+ # Install a recent version of Python
30
+ && curl -o $HOME/miniconda.sh -LO https://repo.anaconda.com/miniconda/Miniconda3-latest-Linux-x86_64.sh \
31
+ && chmod +x $HOME/miniconda.sh && bash ~/miniconda.sh -b -p /miniconda && rm -f $HOME/miniconda.sh
0 commit comments