Skip to content

Commit 5540a87

Browse files
Fix Docker build for Python plugin
1 parent e941d55 commit 5540a87

File tree

3 files changed

+6
-2
lines changed

3 files changed

+6
-2
lines changed

docker/dev/Dockerfile

Lines changed: 2 additions & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -15,10 +15,12 @@ RUN set -x && apt-get update -qq \
1515
wget \
1616
doxygen \
1717
gcc-11 gcc-11-plugin-dev g++-11 \
18+
python3 \
1819
libboost-filesystem-dev \
1920
libboost-log-dev \
2021
libboost-program-options-dev \
2122
libboost-regex-dev \
23+
libboost-python-dev \
2224
libgit2-dev \
2325
libgraphviz-dev \
2426
libgtest-dev \

docker/runtime/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -56,7 +56,7 @@ RUN set -x && apt-get update -qq && \
5656
curl ca-certificates gnupg \
5757
wget \
5858
llvm-15 \
59-
libboost-filesystem-dev libboost-log-dev libboost-program-options-dev \
59+
libboost-filesystem-dev libboost-log-dev libboost-program-options-dev libboost-python-dev \
6060
default-jre \
6161
libgit2-dev \
6262
libssl3 \
@@ -66,6 +66,7 @@ RUN set -x && apt-get update -qq && \
6666
libthrift-dev \
6767
universal-ctags \
6868
gcc-11 g++-11 \
69+
python3 \
6970
tini && \
7071
ln -s /usr/bin/gcc-11 /usr/bin/gcc && \
7172
ln -s /usr/bin/g++-11 /usr/bin/g++ && \

docker/web/Dockerfile

Lines changed: 2 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ ARG DEBIAN_FRONTEND=noninteractive
1818
RUN set -x && apt-get update -qq \
1919
&& apt-get install -qqy --no-install-recommends \
2020
llvm-15 \
21-
libboost-filesystem-dev libboost-log-dev libboost-program-options-dev \
21+
libboost-filesystem-dev libboost-log-dev libboost-program-options-dev libboost-python-dev \
2222
libsqlite3-dev \
2323
postgresql-server-dev-14 \
2424
default-jre \
@@ -34,6 +34,7 @@ RUN set -x && apt-get update -qq \
3434
curl ca-certificates gnupg \
3535
wget \
3636
gcc-11 g++-11 \
37+
python3 \
3738
&& ln -s /usr/bin/gcc-11 /usr/bin/gcc \
3839
&& ln -s /usr/bin/g++-11 /usr/bin/g++ \
3940
&& apt-get clean \

0 commit comments

Comments
 (0)