diff --git a/Dockerfile b/Dockerfile index 54532fd42..f5f5166ca 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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 \ @@ -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 / \ No newline at end of file diff --git a/common.vars.pkr.hcl b/common.vars.pkr.hcl index 1288e8ff7..e3d1cbd99 100644 --- a/common.vars.pkr.hcl +++ b/common.vars.pkr.hcl @@ -1 +1 @@ -postgres-version = "15.1.1.12" +postgres-version = "15.1.1.13"