Skip to content

Commit a5de487

Browse files
committed
[Dockerfile] Add libsqlite3, numpy==1.19.5 and pandas=1.1.5.
1 parent 0017ed4 commit a5de487

File tree

4 files changed

+8
-0
lines changed

4 files changed

+8
-0
lines changed

cibuild/dockerfiles/Dockerfile.base-py3.8-cu117-ubuntu22.04

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -29,6 +29,8 @@ RUN apt-get update && \
2929
&& apt-get clean && \
3030
&& rm -rf /var/lib/apt/lists/*
3131

32+
RUN apt-get install libsqlite3-dev
33+
3234
#install python
3335
WORKDIR /home/workdir
3436
RUN wget https://www.python.org/ftp/python/3.8.6/Python-3.8.6.tgz \

cibuild/dockerfiles/Dockerfile.base-py3.8-ubuntu22.04

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -28,6 +28,8 @@ RUN apt-get update && apt-get install -y --no-install-recommends \
2828
&& apt-get clean \
2929
&& rm -rf /var/lib/apt/lists/*
3030

31+
RUN apt-get install libsqlite3-dev
32+
3133
#install python
3234
WORKDIR /home/workdir
3335
RUN wget https://www.python.org/ftp/python/3.8.6/Python-3.8.6.tgz \

cibuild/dockerfiles/Dockerfile.devel-py3.8-cu117-ubuntu22.04

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ RUN apt-get install -y libz-dev
55
RUN apt-get install -y openjdk-8-jdk
66

77
RUN pip install \
8+
numpy==1.19.5 && \
89
h5py==2.10.0 && \
910
spicy==0.16.0 && \
1011
portpicker==1.4.0 && \
@@ -13,4 +14,5 @@ RUN pip install \
1314
grpcio==1.47.0 && \
1415
grpcio-tools==1.47.0 && \
1516
pyarrow==2.0.0 && \
17+
pandas==1.1.5 && \
1618
fastparquet==0.6.1

cibuild/dockerfiles/Dockerfile.devel-py3.8-ubuntu22.04

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -5,6 +5,7 @@ RUN apt-get install -y libz-dev
55
RUN apt-get install -y openjdk-8-jdk
66

77
RUN pip install \
8+
numpy==1.19.5 && \
89
h5py==2.10.0 && \
910
spicy==0.16.0 && \
1011
portpicker==1.4.0 && \
@@ -13,4 +14,5 @@ RUN pip install \
1314
grpcio==1.47.0 && \
1415
grpcio-tools==1.47.0 && \
1516
pyarrow==2.0.0 && \
17+
pandas==1.1.5 && \
1618
fastparquet==0.6.1

0 commit comments

Comments
 (0)