File tree Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Expand file tree Collapse file tree 1 file changed +5
-1
lines changed Original file line number Diff line number Diff line change @@ -6,6 +6,7 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
6
6
&& rm -rf /var/lib/apt/lists/*
7
7
8
8
ENV PROTOBUF_VER 3.8.0
9
+ ENV PATH="/miniconda/bin:${PATH}"
9
10
10
11
# NOTE: most of the following assume WORDKIR is '/'
11
12
RUN set -ex \
@@ -24,4 +25,7 @@ RUN set -ex \
24
25
&& cp ./bin/* /bin/ \
25
26
# protoc will search for default includes in the path of the binary
26
27
&& cp -r ./include /bin/ \
27
- && 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
You can’t perform that action at this time.
0 commit comments