File tree 1 file changed +3
-6
lines changed
1 file changed +3
-6
lines changed Original file line number Diff line number Diff line change @@ -762,18 +762,15 @@ 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/*
771
765
772
766
# Setup extensions
773
767
COPY --from=extensions /tmp /tmp
774
768
ENV DEBIAN_FRONTEND=noninteractive
775
769
RUN apt-get update && apt-get install -y --no-install-recommends \
776
770
/tmp/*.deb \
771
+ # Needed for anything using libcurl
772
+ # https://github.com/supabase/postgres/issues/573
773
+ ca-certificates \
777
774
&& rm -rf /var/lib/apt/lists/* /tmp/*
778
775
779
776
# Initialise configs
You can’t perform that action at this time.
0 commit comments