fix: correct devenv postgres tag (#72465)

* fix: correct docker tag for postgres 11.20
This commit is contained in:
Kristin Laemmert 2023-07-27 12:36:59 -04:00 committed by GitHub
parent f3b6e7d7eb
commit 21d1d54689
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
3 changed files with 3 additions and 3 deletions

View File

@ -1 +1 @@
postgres_version=11.20
postgres_version=11.20-alpine3.18

View File

@ -1 +1 @@
postgres_version=11.20
postgres_version=11.20-alpine3.18

View File

@ -1,4 +1,4 @@
ARG postgres_version=11.20
ARG postgres_version=11.20-alpine3.18
FROM postgres:${postgres_version}
ADD setup.sql /docker-entrypoint-initdb.d
RUN chown -R postgres:postgres /docker-entrypoint-initdb.d/