我试图部署一个带有依赖项的python lambda函数,但docker守护进程(在Centos linux上)发现一个错误,即存在无效的绑定装载规范。错误是
"/path//to/my/code:/asset-input:z,delegated": invalid mode: delegated
以下是lambda函数的代码:
python_function = Function(
self,
id="PythonFunction",
runtime=Runtime.PYTHON_3_9,
handler="app.main.lambda_handler",
timeout=Duration.seconds(20),
code=Code.from_asset(
path=str(python_function_path.resolve()),
bundling=BundlingOptions(
image=Runtime.PYTHON_3_9.bundling_image,
command=[
"bash",
"-c",
"pip install -r requirements.txt -t /asset-output && cp -au . /asset-output",
],
),
),
memory_size=128,
log_retention=RetentionDays.TWO_WEEKS,
)
这在我的Mac上运行良好,但尝试从Centos部署失败。