add an S3 storage variant image

This commit is contained in:
El RIDO 2022-10-22 18:13:11 +02:00
parent 2fa45c2159
commit ce58ceb146
No known key found for this signature in database
GPG key ID: 0F5C940A6BD81F92
4 changed files with 15 additions and 4 deletions

View file

@ -56,11 +56,14 @@ main() {
fs)
BUILD_ARGS="--build-arg ALPINE_PACKAGES= --build-arg COMPOSER_PACKAGES="
;;
gcs)
BUILD_ARGS="--build-arg ALPINE_PACKAGES=php8-openssl --build-arg COMPOSER_PACKAGES=google/cloud-storage"
;;
pdo)
BUILD_ARGS="--build-arg ALPINE_PACKAGES=php8-pdo_mysql,php8-pdo_pgsql --build-arg COMPOSER_PACKAGES="
;;
gcs)
BUILD_ARGS="--build-arg ALPINE_PACKAGES=php8-openssl"
s3)
BUILD_ARGS="--build-arg ALPINE_PACKAGES=php8-openssl --build-arg COMPOSER_PACKAGES=aws/aws-sdk-php"
;;
*)
BUILD_ARGS=""