File tree Expand file tree Collapse file tree 2 files changed +20
-25
lines changed Expand file tree Collapse file tree 2 files changed +20
-25
lines changed Original file line number Diff line number Diff line change @@ -11,6 +11,7 @@ ARG GIT_BRANCH=master
11
11
ARG GIT_TAG
12
12
ARG POSTGRES_VERSION=13
13
13
ARG TARGETARCH
14
+ ARG BOOST_VER=1.74-dev
14
15
15
16
RUN apt-get update &&\
16
17
apt-get install -y --no-install-recommends \
@@ -22,12 +23,12 @@ RUN apt-get update &&\
22
23
sqlite3\
23
24
libsqlite3-dev\
24
25
libboost-dev\
25
- libboost-system1.74-dev \
26
- libboost-thread1.74-dev \
27
- libboost-serialization1.74-dev \
28
- libboost-python1.74-dev \
29
- libboost-regex1.74-dev \
30
- libboost-iostreams1.74-dev \
26
+ libboost-system$BOOST_VER \
27
+ libboost-thread$BOOST_VER \
28
+ libboost-serialization$BOOST_VER \
29
+ libboost-python$BOOST_VER \
30
+ libboost-regex$BOOST_VER \
31
+ libboost-iostreams$BOOST_VER \
31
32
zlib1g-dev\
32
33
swig3.0\
33
34
libeigen3-dev\
Original file line number Diff line number Diff line change 4
4
# build the deb packages so we need to install the packages using apt to have tight control over this.
5
5
#
6
6
7
- FROM debian:buster
7
+ FROM debian:bullseye
8
8
LABEL maintainer="Tim Dudgeon<
[email protected] >"
9
9
10
- ENV PG_MAJOR=11
10
+ ENV PG_MAJOR=13
11
+ ENV BOOST_VER=1.74.0
11
12
ARG DOCKER_TAG=latest
12
13
13
- # This adds the postgres apt repos as postgresql-10 is not available for buster
14
- # and postgresql-11 does not seem to work with RDKit yet.
15
- #
16
- RUN apt-get update &&\
17
- apt-get -y install curl ca-certificates gnupg &&\
18
- curl https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - &&\
19
- echo "deb http://apt.postgresql.org/pub/repos/apt/ buster-pgdg main" > /etc/apt/sources.list.d/pgdg.list
20
-
21
14
RUN apt-get update &&\
22
15
apt-get upgrade -y &&\
23
16
apt-get install -y --no-install-recommends\
24
17
python3\
25
18
python3-numpy\
26
- libboost-system1.67.0 \
27
- libboost-thread1.67.0 \
28
- libboost-serialization1.67.0 \
29
- libboost-python1.67.0 \
30
- libboost-regex1.67.0 \
31
- libboost-chrono1.67.0 \
32
- libboost-date-time1.67.0 \
33
- libboost-atomic1.67.0 \
34
- libboost-iostreams1.67.0 \
19
+ libboost-system$BOOST_VER \
20
+ libboost-thread$BOOST_VER \
21
+ libboost-serialization$BOOST_VER \
22
+ libboost-python$BOOST_VER \
23
+ libboost-regex$BOOST_VER \
24
+ libboost-chrono$BOOST_VER \
25
+ libboost-date-time$BOOST_VER \
26
+ libboost-atomic$BOOST_VER \
27
+ libboost-iostreams$BOOST_VER \
35
28
libfreetype6\
36
29
postgresql-$PG_MAJOR\
37
30
postgresql-client-$PG_MAJOR\
38
31
postgresql-plpython3-$PG_MAJOR\
32
+ pgtop\
39
33
gosu\
40
34
wget\
41
35
zip &&\
You can’t perform that action at this time.
0 commit comments