我正在使用Codepipeline和Beanstalk On Docker配置CI/CD。
在代码管道的构建过程之前,它一直运行良好,但Deploy一直失败。
失败的原因尚不清楚,但如下所示出现错误。服务:AmazonCloudFormation,消息:Stack命名"awseb--stack"已中止操作。当前状态:'UPDATE_ROLLBACK_IN_PROGRESS'原因:以下资源失败创建:[AWSEBUpdateWaitConditionAFyGSI,AWSEBInstanceLaunchWaitAconditionaiqOL]。
我的Dockerfile和buildspec.yml以及dockerrun.aws.json文件都是
Dockerfile
FROM node:12.16.3-alpine as tsbuild
RUN mkdir /usr/app
WORKDIR /usr/app
COPY . /usr/app
RUN npm install
RUN npm run build
FROM node:12.16.3-alpine
RUN mkdir /usr/app
WORKDIR /usr/app
COPY --from=tsbuild /usr/app/dist /usr/app
COPY package*.json /usr/app/
RUN npm install -g pm2
RUN npm install
EXPOSE 8080
CMD ["npm", "run", "prod"]
buildspec.yml
version: 0.2
env:
variables:
AWS_DEFAULT_REGION: ap-northeast-2
AWS_EB_DEPLOY_ENV: docker
phases:
install:
runtime-versions:
docker: 18
nodejs: 10
commands:
- aws --version
- $(aws ecr get-login --no-include-email --region ap-northeast-2)
- npm install
build:
commands:
- docker build -t image .
post_build:
commands:
- docker tag image:latest <ECR_URL>
- docker <ECR_URL>
Dockerrun.aws.json
{
"AWSEBDockerrunVersion": "1",
"Image": {
"Name": <ECR_URL>,
"Update": "true"
},
"Ports": [
{
"ContainerPort": "8080"
}],
"Volumes": [],
"Logging": "/var/log/nodejs"
}
此外,我正在使用ts节点,但当我打开Beanstalk中分发的zip时,我找不到dist文件夹。
我在CodeDeploy中使用BuildArtifacts,而不是SourceArtifacts。这会是个问题吗?
我想知道我犯了什么错误。
在我看来,"Dockerrun.aws.json"似乎没有进入源捆绑包。如果它在代码回购的根目录中,那么请将以下内容添加到buildspec.yml:
artifacts:
files:
- '**/*'