Skip to content
Merged
Show file tree
Hide file tree
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
7 changes: 4 additions & 3 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -106,9 +106,10 @@ ENV LC_COLLATE=C.UTF-8

FROM base as builder
# Install build dependencies
RUN apt-get update && apt-get install -y --no-install-recommends --allow-downgrades libssl1.1="1.1.1f-1ubuntu2.20"
COPY --from=pg-dev /tmp /tmp
RUN apt-get install -y --no-install-recommends \
RUN apt-get update && \
rm -f /tmp/libssl-dev* && \
apt-get install -y --no-install-recommends \
/tmp/*.deb \
build-essential \
checkinstall \
Expand Down Expand Up @@ -926,4 +927,4 @@ RUN --mount=type=cache,target=/ccache,from=public.ecr.aws/supabase/postgres:ccac
ccache -s && \
cp -r /ccache/* /tmp
FROM scratch as buildcache
COPY --from=stats /tmp /
COPY --from=stats /tmp /
2 changes: 1 addition & 1 deletion common.vars.pkr.hcl
Original file line number Diff line number Diff line change
@@ -1 +1 @@
postgres-version = "15.1.1.12"
postgres-version = "15.1.1.13"