* Added support for PHP 7.3 v2 Specialization * Add builder dockerfile for PHP7 * Support mcrypt in PHP 7.3
10 lines
160 B
Bash
Executable File
10 lines
160 B
Bash
Executable File
#!/bin/sh
|
|
set -euxo pipefail
|
|
|
|
if [ -f ${SRC_PKG}/composer.json ]
|
|
then
|
|
cd ${SRC_PKG}
|
|
composer install --no-interaction
|
|
fi
|
|
cp -r ${SRC_PKG} ${DEPLOY_PKG}
|