Files
fission-src/environments/php7/builder/defaultBuildCmd
T
Alberto LopezandTa-Ching Chen f104f0b46b PHP 7.3 v2 Specialization (#1110)
* Added support for PHP 7.3 v2 Specialization
* Add builder dockerfile for PHP7
* Support mcrypt in PHP 7.3
2019-03-07 17:05:23 +08:00

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}