我想选择一个框架来构建和部署 AWS 服务,我需要有一个完整的优缺点列表来证明一个框架优于另一个。由于此论坛不希望人们只是发表意见,因此请在回复中提供参考。另外,我想听听使用任何这些框架部署生产解决方案的人的意见。
我的 Dockerfile 中有以下代码:
FROM alpine/git as clone
WORKDIR /app
RUN git clone https://github.com/spring-projects/spring-petclinic.git
Run Code Online (Sandbox Code Playgroud)
但是,我收到此错误:
fatal: unable to access 'https://github.com/spring-projects/spring-petclinic.git/': SSL certificate problem: self signed certificate in certificate chain
Run Code Online (Sandbox Code Playgroud)
我实际上有一个本地 git,我无法禁用 SSL 证书。
我想创建一个包含 lambda 和几个 sqs 的 SAM template.yml。我想使用参数来部署它,但不会填充所有 sqs,仅填充一些 sqs,具体取决于我需要部署它的环境。如何创建填充了部分参数的模板?