Skip to content

Commit a3ca588

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

File tree

4 files changed

+4
-2
lines changed

4 files changed

+4
-2
lines changed

.github/workflows/docker.yml

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -1,6 +1,7 @@
11
name: Docker images
22

33
on:
4+
pull_request:
45
workflow_dispatch:
56
workflow_call:
67
inputs:

docker/dev/Dockerfile

Lines changed: 1 addition & 0 deletions
Original file line numberDiff line numberDiff line change
@@ -19,6 +19,7 @@ RUN set -x && apt-get update -qq \
1919
libboost-log-dev \
2020
libboost-program-options-dev \
2121
libboost-regex-dev \
22+
libboost-python-dev \
2223
libgit2-dev \
2324
libgraphviz-dev \
2425
libgtest-dev \

docker/runtime/Dockerfile

Lines changed: 1 addition & 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 \

docker/web/Dockerfile

Lines changed: 1 addition & 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 \

0 commit comments

Comments
 (0)