Merge pull request #5898 from ToolJet/merge/main-to-develop

Merge main to develop
This commit is contained in:
Midhun G S 2023-03-31 14:48:40 +05:30 committed by GitHub
commit 7e792bd631
No known key found for this signature in database
GPG key ID: 4AEE18F83AFDEB23

View file

@ -6,6 +6,7 @@ COPY --from=postgrest/postgrest:v10.1.1.20221215 /bin/postgrest /bin
# Install Postgres
RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add -
RUN echo "deb http://apt.postgresql.org/pub/repos/apt/ bullseye-pgdg main" | tee /etc/apt/sources.list.d/pgdg.list
RUN echo "deb http://deb.debian.org/debian"
RUN apt update && apt -y install postgresql-13 postgresql-client-13 supervisor
USER postgres
RUN service postgresql start && \