diff --git a/CHANGELOG.md b/CHANGELOG.md index 7dede15..6359602 100644 --- a/CHANGELOG.md +++ b/CHANGELOG.md @@ -4,6 +4,9 @@ ### Added * Add `mysql-client` in the `php-dev-craft` & `php-prod-craft` MariaDB containers so we get `mysqldump` +### Changed +* Both MariaDB and Postgres `php-prod-craft` containers should use `FROM php-prod-base` + ## 1.0.7 - 2020.11.20 ### Added * Add `node-12` image diff --git a/php-prod-craft/mariadb/Dockerfile b/php-prod-craft/mariadb/Dockerfile index dca1010..72a6723 100755 --- a/php-prod-craft/mariadb/Dockerfile +++ b/php-prod-craft/mariadb/Dockerfile @@ -1,4 +1,4 @@ -FROM nystudio107/php-dev-base +FROM nystudio107/php-prod-base # Install packages RUN apt-get update \ diff --git a/php-prod-craft/postgres/Dockerfile b/php-prod-craft/postgres/Dockerfile index 3f55e37..181ffc0 100755 --- a/php-prod-craft/postgres/Dockerfile +++ b/php-prod-craft/postgres/Dockerfile @@ -1,4 +1,4 @@ -FROM nystudio107/php-dev-base +FROM nystudio107/php-prod-base # Install packages RUN apt-get update \