changed postgresql version to 13

This commit is contained in:
mattisderbock@gmail.com 2020-11-27 10:49:24 +01:00
parent 94706f9054
commit 0b9a8696cc

View file

@ -20,7 +20,7 @@ RUN wget --quiet -O - https://www.postgresql.org/media/keys/ACCC4CF8.asc | apt-k
RUN apt-get update RUN apt-get update
# Install the latest version of PostgreSQL. # Install the latest version of PostgreSQL.
# If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql': # If you want a specific version, use 'postgresql-12' or similar instead of 'postgresql':
RUN apt-get -y install postgresql-client-12 RUN apt-get -y install postgresql-client-13
# Prepare Entrypoint Script # Prepare Entrypoint Script