Skip to content

Commit 1b00c85

Browse files
committed
perf
1 parent 84b2a33 commit 1b00c85

File tree

3 files changed

+12
-2
lines changed

3 files changed

+12
-2
lines changed

8.0/Dockerfile

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,4 +1,4 @@
1-
FROM alpine:edge
1+
FROM alpine:3.14
22

33
LABEL Maintainer="chuoke"
44

8.0/config/supervisord.conf

+1-1
Original file line numberDiff line numberDiff line change
@@ -1,5 +1,5 @@
11
[program:php-fpm]
2-
command=php-fpm7 -F
2+
command=php-fpm8 -F
33
stdout_logfile=/dev/stdout
44
stdout_logfile_maxbytes=0
55
stderr_logfile=/dev/stderr

8.0/start-container

+10
Original file line numberDiff line numberDiff line change
@@ -14,4 +14,14 @@ if [ ! -z "$COMPOSER_REPO_PACKAGIST" ]; then
1414
composer config -g repo.packagist composer $COMPOSER_REPO_PACKAGIST
1515
fi
1616

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+
1727
/usr/bin/supervisord -c /etc/supervisor/conf.d/supervisord.conf

0 commit comments

Comments
 (0)