Tell Docker to always pull the latest base images when building containers.

Fixes #7372
This commit is contained in:
Dave Page 2022-05-13 13:55:41 +01:00
parent ca8e14455f
commit 7686c33cbd
3 changed files with 22 additions and 1 deletions

View File

@ -122,7 +122,7 @@ debian:
docker:
echo $(APP_NAME)
docker build -t ${APP_NAME} -t $(APP_NAME):latest -t $(APP_NAME):$(APP_RELEASE) -t $(APP_NAME):$(APP_RELEASE).$(APP_REVISION) .
docker build --pull -t ${APP_NAME} -t $(APP_NAME):latest -t $(APP_NAME):$(APP_RELEASE) -t $(APP_NAME):$(APP_RELEASE).$(APP_REVISION) .
docs:
LC_ALL=en_US.UTF-8 LANG=en_US.UTF-8 $(MAKE) -C docs/en_US -f Makefile.sphinx html

View File

@ -11,6 +11,7 @@ notes for it.
.. toctree::
:maxdepth: 1
release_notes_6_10
release_notes_6_9
release_notes_6_8
release_notes_6_7

View File

@ -0,0 +1,20 @@
************
Version 6.10
************
Release date: 2022-06-02
This release contains a number of bug fixes and new features since the release of pgAdmin 4 v6.9.
New features
************
Housekeeping
************
Bug fixes
*********
| `Issue #7372 <https://redmine.postgresql.org/issues/7372>`_ - Tell Docker to always pull the latest base images when building containers.