我试图使用Bref将我的Laravel应用程序部署到AWS Lambda。我试着把几乎所有的图像,视频都排除在外,但我还是得到了
Serverless Error ----------------------------------------
An error occurred: ArtisanLambdaFunction - Resource handler returned message: "Unzipped size must be smaller than 235311048 bytes (Service: Lambda, Status Code: 400 ...我的serverless.yml文件是
service: my-laravel-application
provider:
name: aws
# The AWS region in which to deploy (us-east-1 is the default)
region: eu-west-1
# The stage of the application, e.g. dev, production, staging… ('dev' is the default)
stage: dev
runtime: provided.al2
package:
individually: true
# Directories to exclude from deployment
exclude:
- node_modules/**
- public/storage/**
- resources/assets/**
- storage/**
- tests/**
- public/images/**
- public/uploads/**
- public/videos/**
functions:
# This function runs the Laravel website/API
web:
handler: public/index.php
timeout: 28 # in seconds (API Gateway has a timeout of 29 seconds)
layers:
- ${bref:layer.php-74-fpm}
events:
- httpApi: '*'
# This function lets us run artisan commands in Lambda
artisan:
handler: artisan
timeout: 120 # in seconds
layers:
- ${bref:layer.php-74} # PHP
- ${bref:layer.console} # The "console" layer
plugins:
# We need to include the Bref plugin
- ./vendor/bref/bref 我试图把几乎所有的资产都排除在外。尽管如此,我还是会犯同样的错误。在压缩时,我的应用程序的总大小仅为119.4 MB。
发布于 2021-09-27 16:46:46
我可以通过添加所有公共资产来排除list来解决这个问题,从而将zip文件的大小减少到43 MB。
在提取zip时,解压缩的总大小小于220606645字节。
然后,
中的文件
https://stackoverflow.com/questions/68772307
复制相似问题