Skip to content

Commit e1eb11c

Browse files
Fix pg dockerfiles
1 parent c03c17c commit e1eb11c

File tree

3 files changed

+6
-6
lines changed

3 files changed

+6
-6
lines changed

tests/docker/pg-13/Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -18,7 +18,7 @@ RUN git clone https://github.com/pgsql-io/multicorn2 /tmp/multicorn2 && \
1818
PYTHON_OVERRIDE=python3 make install && \
1919
cp /tmp/multicorn2/multicorn.control /usr/share/postgresql/13/extension/multicorn.control && \
2020
rm -rf /tmp/multicorn2
21-
RUN pip3 install $ES_PIP_VERSION
21+
RUN pip3 install $ES_PIP_VERSION --break-system-packages
2222

2323
COPY . /pg-es-fdw
2424
WORKDIR /pg-es-fdw

tests/docker/pg-14/Dockerfile

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -7,7 +7,7 @@ RUN echo "en_US UTF-8" >> /etc/locale.gen
77
RUN DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true dpkg-reconfigure locales
88
RUN apt-get update
99
RUN apt-get install --yes \
10-
clang-11 \
10+
clang-13 \
1111
git \
1212
postgresql-server-dev-14 \
1313
python3 \
@@ -19,7 +19,7 @@ RUN git clone https://github.com/pgsql-io/multicorn2 /tmp/multicorn2 && \
1919
PYTHON_OVERRIDE=python3 make install && \
2020
cp /tmp/multicorn2/multicorn.control /usr/share/postgresql/14/extension/multicorn.control && \
2121
rm -rf /tmp/multicorn2
22-
RUN pip3 install $ES_PIP_VERSION
22+
RUN pip3 install $ES_PIP_VERSION --break-system-packages
2323

2424
COPY . /pg-es-fdw
2525
WORKDIR /pg-es-fdw

tests/docker/pg-15/Dockerfile

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM postgres:15beta4
1+
FROM postgres:15
22

33
ARG ES_PIP_VERSION
44

@@ -7,7 +7,7 @@ RUN echo "en_US UTF-8" >> /etc/locale.gen
77
RUN DEBIAN_FRONTEND=noninteractive DEBCONF_NONINTERACTIVE_SEEN=true dpkg-reconfigure locales
88
RUN apt-get update
99
RUN apt-get install --yes \
10-
clang-11 \
10+
clang-13 \
1111
git \
1212
postgresql-server-dev-15 \
1313
python3 \
@@ -19,7 +19,7 @@ RUN git clone https://github.com/pgsql-io/multicorn2 /tmp/multicorn2 && \
1919
PYTHON_OVERRIDE=python3 make install && \
2020
cp /tmp/multicorn2/multicorn.control /usr/share/postgresql/15/extension/multicorn.control && \
2121
rm -rf /tmp/multicorn2
22-
RUN pip3 install $ES_PIP_VERSION
22+
RUN pip3 install $ES_PIP_VERSION --break-system-packages
2323

2424
COPY . /pg-es-fdw
2525
WORKDIR /pg-es-fdw

0 commit comments

Comments
 (0)