diff --git a/Dockerfile b/Dockerfile index 491ae43..b0b4266 100644 --- a/Dockerfile +++ b/Dockerfile @@ -16,6 +16,8 @@ RUN apk add --no-cache --update nginx \ # Copy dependencies from vendor stage COPY --from=vendor /app/vendor /var/www/html/vendor +# Copy aws.phar +COPY vendor/aws.phar /var/www/html/vendor/aws.phar # Copy application code COPY . /var/www/html/ diff --git a/composer.json b/composer.json index 75c95d8..656ee2b 100644 --- a/composer.json +++ b/composer.json @@ -4,7 +4,6 @@ "type": "project", "require": { "php": "^8.2", - "aws/aws-sdk-php": "^3.300", "ext-pdo": "*", "ext-curl": "*", "ext-json": "*" @@ -15,4 +14,4 @@ "s3_client.php" ] } -} +} \ No newline at end of file diff --git a/config.php b/config.php index 6246128..cd68286 100644 --- a/config.php +++ b/config.php @@ -1,7 +1,7 @@