chore: Remove current symlink to Postgres (#34454)

Reason for this previously documented at
https://github.com/appsmithorg/appsmith/pull/34265#issue-2356259090.

Cypress tests don' make sense since the only diff is on
`base.dockerfile`.


<!-- This is an auto-generated comment: release notes by coderabbit.ai
-->

## Summary by CodeRabbit

- **Chores**
- Updated Dockerfile to streamline PostgreSQL setup. Removed creation of
a symlink to the current version of PostgreSQL.

<!-- end of auto-generated comment: release notes by coderabbit.ai -->
This commit is contained in:
Shrikant Sharat Kandula 2024-06-25 13:03:51 +05:30 committed by GitHub
parent aa773f6950
commit 064d74c833
No known key found for this signature in database
GPG Key ID: B5690EEEBB952194

View File

@ -28,8 +28,6 @@ RUN set -o xtrace \
&& curl --silent --show-error --location https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-key add - \
&& apt update \
&& apt-get install --no-install-recommends --yes mongodb-org redis postgresql-13 postgresql-14 \
# Create a symlink to the current version of PostgreSQL
&& ln -s /usr/lib/postgresql/13 /usr/lib/postgresql/current \
&& apt-get clean
ENV PATH="/usr/lib/postgresql/14/bin:${PATH}"