我有一个应用程序使用:
- 山姆
- AWS S3
- 基于 Docker 的 AWS Lambda
- AWS SAM 管道
- Github 功能
在 Dockerfile 我有:
RUN aws s3 cp s3://mylambda/distilBERT distilBERT.tar.gz
导致错误消息:
Step 6/8 : RUN aws s3 cp s3://mylambda/distilBERT distilBERT.tar.gz
---> Running in 786873b916db
fatal error: Unable to locate credentials
Error: InferenceFunction failed to build: The command '/bin/sh -c aws s3 cp s3://mylambda/distilBERT distilBERT.tar.gz' returned a non-zero code: 1
我需要找到一种方法以安全的方式存储凭证。GitHub秘密或其他东西有可能吗?
谢谢