File tree 3 files changed +12
-2
lines changed
3 files changed +12
-2
lines changed Original file line number Diff line number Diff line change 1
- FROM alpine:edge
1
+ FROM alpine:3.14
2
2
3
3
LABEL Maintainer="chuoke"
4
4
Original file line number Diff line number Diff line change 1
1
[program:php-fpm]
2
- command=php-fpm7 -F
2
+ command=php-fpm8 -F
3
3
stdout_logfile=/dev/stdout
4
4
stdout_logfile_maxbytes=0
5
5
stderr_logfile=/dev/stderr
Original file line number Diff line number Diff line change @@ -14,4 +14,14 @@ if [ ! -z "$COMPOSER_REPO_PACKAGIST" ]; then
14
14
composer config -g repo.packagist composer $COMPOSER_REPO_PACKAGIST
15
15
fi
16
16
17
+ if [ -n " $APP_PATH " ] && [ -a " ${APP_PATH} /composer.json" ]; then
18
+ cd " $APP_PATH "
19
+
20
+ if [ -n " $APP_ENV " ] && ([ " $APP_ENV " = " prod" ] || [ " $APP_ENV " = " production" ]); then
21
+ composer install --optimize-autoloader --no-dev
22
+ else
23
+ composer install
24
+ fi
25
+ fi
26
+
17
27
/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf
You can’t perform that action at this time.
0 commit comments