File tree Expand file tree Collapse file tree 6 files changed +8
-4
lines changed Expand file tree Collapse file tree 6 files changed +8
-4
lines changed Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ ENV JAVA_HOME=/usr/lib/jvm/java-openjdk
27
27
28
28
# Install Python
29
29
RUN dnf -y update \
30
- && dnf -y install python3-devel python3-pip \
30
+ && dnf -y install python3-devel python3-pip python3-numpy \
31
31
&& dnf clean all \
32
32
&& rm -rf /var/cache/dnf
33
33
Original file line number Diff line number Diff line change @@ -7,7 +7,8 @@ ENV PATH=/usr/local/bin:$PATH
7
7
RUN pacman -Syu --noconfirm git base-devel bazel
8
8
9
9
# Install Python
10
- RUN pacman -Syu --noconfirm python python-pip python-setuptools
10
+ RUN pacman -Syu --noconfirm python python-pip python-setuptools \
11
+ python-numpy python-pandas
11
12
12
13
FROM env AS devel
13
14
WORKDIR /home/project
Original file line number Diff line number Diff line change @@ -6,9 +6,11 @@ FROM debian:latest AS env
6
6
RUN apt-get update -qq \
7
7
&& apt-get install -yq git wget curl libssl-dev build-essential \
8
8
&& apt-get install -yq python3-dev python3-pip python3-venv \
9
+ python3-numpy python3-pandas \
9
10
&& apt-get install -yq default-jdk \
10
11
&& apt-get clean \
11
12
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
13
+
12
14
# Install Bazel
13
15
RUN curl https://bazel.build/bazel-release.pub.gpg | apt-key add -
14
16
ARG TARGETARCH=amd64
Original file line number Diff line number Diff line change @@ -26,7 +26,7 @@ ENV JAVA_HOME=/usr/lib/jvm/java-openjdk
26
26
27
27
# Install Python
28
28
RUN dnf -y update \
29
- && dnf -y install python3 python3-devel python3-pip \
29
+ && dnf -y install python3 python3-devel python3-pip python3-numpy \
30
30
&& dnf clean all
31
31
32
32
FROM env AS devel
Original file line number Diff line number Diff line change @@ -27,7 +27,7 @@ ENV JAVA_HOME=/usr/lib/jvm/java-openjdk
27
27
28
28
# Install Python
29
29
RUN dnf -y update \
30
- && dnf -y install python3-devel python3-pip \
30
+ && dnf -y install python3-devel python3-pip python3-numpy \
31
31
&& dnf clean all \
32
32
&& rm -rf /var/cache/dnf
33
33
Original file line number Diff line number Diff line change @@ -10,6 +10,7 @@ RUN ln -snf /usr/share/zoneinfo/$TZ /etc/localtime && echo $TZ > /etc/timezone
10
10
RUN apt-get update -qq \
11
11
&& apt-get install -yq git wget curl libssl-dev build-essential \
12
12
&& apt-get install -yq python3-dev python3-pip python3-venv \
13
+ python3-numpy python3-pandas \
13
14
&& apt-get install -yq default-jdk \
14
15
&& apt-get clean \
15
16
&& rm -rf /var/lib/apt/lists/* /tmp/* /var/tmp/*
You can’t perform that action at this time.
0 commit comments