File tree 2 files changed +8
-2
lines changed
2 files changed +8
-2
lines changed Original file line number Diff line number Diff line change @@ -244,7 +244,7 @@ WORKDIR /tmp/pgsql-http-${pgsql_http_release}
244
244
RUN --mount=type=cache,target=/ccache,from=public.ecr.aws/supabase/postgres:ccache \
245
245
make -j$(nproc)
246
246
# Create debian package
247
- RUN checkinstall -D --install=no --fstrans=no --backup=no --pakdir=/tmp --nodoc
247
+ RUN checkinstall -D --install=no --fstrans=no --backup=no --pakdir=/tmp --requires=libcurl3-gnutls -- nodoc
248
248
249
249
# ###################
250
250
# 08-plpgsql_check.yml
@@ -762,6 +762,12 @@ COPY --from=supautils /tmp/*.deb /tmp/
762
762
# Build final image
763
763
# ###################
764
764
FROM base as production
765
+ # Install essential packages
766
+ RUN apt-get update && apt-get install -y --no-install-recommends \
767
+ # Needed for anything using libcurl
768
+ # https://github.com/supabase/postgres/issues/573
769
+ ca-certificates \
770
+ && rm -rf /var/lib/apt/lists/*
765
771
766
772
# Setup extensions
767
773
COPY --from=extensions /tmp /tmp
Original file line number Diff line number Diff line change 1
- postgres-version = " 15.1.0.53 "
1
+ postgres-version = " 15.1.0.54-rc0 "
You can’t perform that action at this time.
0 commit comments