使用Docker镜像运行AWS Serverless . net项目失败



我在运行基于AWS Lambda的第一个无服务器项目时遇到了问题。我想在本地主机上运行使用SAM CLI API,仍然占有

Error: AspNetCoreFunction failed to build: COPY failed: file not found in build context or excluded by .dockerignore: stat bin/Release/lambda-publish: file does not exist

执行,

sam build --template .serverless.template

从我的目录。API项目。我无法找到解决方案阅读文档或搜索谷歌。请查看我的解决方案放置在:https://github.com/RazorN/Serverless-aws-e-shop/tree/catalog-init

我的目标是使用"sam local start-api">

运行本地API另外,请分享关于我的解决方案架构或本地测试方法的任何想法,因为我说过这是我在使用微服务后第一次尝试无服务器架构。

谢谢你的回答:)

添加到Catalog.API.csproj下:

<PropertyGroup Condition=" '$(Configuration)' == 'Release' ">
<OutputPath>bin/Release/lambda-publish</OutputPath>
</PropertyGroup>

Release模式下构建您的解决方案。

或修复您的docker文件(Serverless-aws-e-shop/Services/Catalog/Catalog.API/Dockerfile)从现有路径复制文件或使用多阶段构建构建容器内的解决方案(如dotnet docker应用程序所做的)

相关内容

  • 没有找到相关文章

最新更新