diff --git a/Dockerfile.compute-node b/Dockerfile.compute-node index 9a30ef4740b8..080a81d246e3 100644 --- a/Dockerfile.compute-node +++ b/Dockerfile.compute-node @@ -715,7 +715,7 @@ FROM build-deps AS neon-pg-ext-build # COPY --from=rdkit-pg-build /usr/local/pgsql/ /usr/local/pgsql/ # COPY --from=pg-uuidv7-pg-build /usr/local/pgsql/ /usr/local/pgsql/ # COPY --from=pg-roaringbitmap-pg-build /usr/local/pgsql/ /usr/local/pgsql/ -# COPY --from=pg-embedding-pg-build /usr/local/pgsql/ /usr/local/pgsql/ +COPY --from=pg-embedding-pg-build /usr/local/pgsql/ /usr/local/pgsql/ COPY pgxn/ pgxn/ RUN make -j $(getconf _NPROCESSORS_ONLN) \ @@ -758,7 +758,8 @@ FROM neon-pg-ext-build AS postgres-cleanup-layer COPY --from=neon-pg-ext-build /usr/local/pgsql /usr/local/pgsql # Remove binaries from /bin/ that we won't use (or would manually copy & install otherwise) -RUN cd /usr/local/pgsql/bin && rm ecpg raster2pgsql shp2pgsql pgtopo_export pgtopo_import pgsql2shp +# RUN cd /usr/local/pgsql/bin && rm ecpg raster2pgsql shp2pgsql pgtopo_export pgtopo_import pgsql2shp +RUN cd /usr/local/pgsql/bin && rm ecpg # Remove headers that we won't need anymore - we've completed installation of all extensions RUN rm -r /usr/local/pgsql/include