Skip to content

Commit 16d5fc2

Browse files
committed
Merge branch 'release/0.13.1' into master
2 parents 62e5371 + 28165f2 commit 16d5fc2

File tree

2 files changed

+5
-5
lines changed

2 files changed

+5
-5
lines changed

Dockerfile

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM php:7.4.10-fpm-alpine3.11
1+
FROM php:7.4.11-fpm-alpine3.11
22

33
ENV PHP_OPCACHE_VALIDATE_TIMESTAMPS="0" \
44
PHP_OPCACHE_MAX_ACCELERATED_FILES="10000" \

root/entrypoint.sh

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -10,12 +10,12 @@ touch /opt/app/storage/logs/worker.log
1010
chown www-data:www-data -R /opt/app/storage
1111
chown www-data:www-data -R /opt/app/bootstrap/cache
1212

13-
# startup commands
14-
echo "Running startup commands..."
15-
php /usr/local/bin/startup-commands.php | bash
16-
1713
if [[ -n "$DB_HOST" || -n "$DB_PORT" ]]; then
1814
wait-for-it.sh --host=$DB_HOST --port=$DB_PORT
1915
fi
2016

17+
# startup commands
18+
echo "Running startup commands..."
19+
php /usr/local/bin/startup-commands.php | bash
20+
2121
exec "$@"

0 commit comments

Comments
 (0)