Skip to content

Commit

Permalink
Fixed typo in Dockerfile that would cause the PHP container to not build
Browse files Browse the repository at this point in the history
  • Loading branch information
Andrew Welch committed Jun 15, 2021
1 parent 6871da1 commit 3407e74
Show file tree
Hide file tree
Showing 4 changed files with 4 additions and 4 deletions.
2 changes: 1 addition & 1 deletion php-prod-craft/php-7.4-alpine/mariadb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down
2 changes: 1 addition & 1 deletion php-prod-craft/php-7.4-alpine/postgres/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down
2 changes: 1 addition & 1 deletion php-prod-craft/php-8.0-alpine/mariadb/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -67,7 +67,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down
2 changes: 1 addition & 1 deletion php-prod-craft/php-8.0-alpine/postgres/Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -69,7 +69,7 @@ WORKDIR /var/www/project/cms
# when working with teams or multiple environments
CMD composer install --verbose --no-progress --no-scripts --optimize-autoloader --no-interaction \
&& \
chown -R www-data:www-data /var/www/project
chown -R www-data:www-data /var/www/project \
&& \
composer craft-update \
&& \
Expand Down

0 comments on commit 3407e74

Please sign in to comment.