-
Notifications
You must be signed in to change notification settings - Fork 3.9k
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
chore: do not login to DockerHub #11358
Conversation
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Wait
- nohup /usr/bin/dockerd --host=unix:///var/run/docker.sock --host=tcp://127.0.0.1:2375 --storage-driver=overlay2& | ||
- timeout 15 sh -c "until docker info; do echo .; sleep 1; done" |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Aren't these still needed to start the docker daemon?
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
@eladb We decided to move this into the ecr proxy image as well - so no. the start.sh
script takes care of it.
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
I'll add a comment and maybe later we can think about renaming/exposing another script to make it more clear.
AWS CodeBuild CI Report
Powered by github-codebuild-logs, available on the AWS Serverless Application Repository |
aws-cdk/aws-lambda-nodejs: FAIL test/bundling.test.js (78.783 s)
@aws-cdk/aws-lambda-nodejs: â—� Parcel bundling
@aws-cdk/aws-lambda-nodejs: SyntaxError: Unexpected end of JSON input
@aws-cdk/aws-lambda-nodejs: at JSON.parse (<anonymous>)
@aws-cdk/aws-lambda-nodejs: 21 | this.pkgPath = path.join(pkgPath, 'package.json');
@aws-cdk/aws-lambda-nodejs: 22 | this.pkg = fs.readFileSync(this.pkgPath);
@aws-cdk/aws-lambda-nodejs: > 23 | this.pkgJson = JSON.parse(this.pkg.toString());
@aws-cdk/aws-lambda-nodejs: | ^
@aws-cdk/aws-lambda-nodejs: 24 | }
@aws-cdk/aws-lambda-nodejs: 25 |
@aws-cdk/aws-lambda-nodejs: 26 | /**
@aws-cdk/aws-lambda-nodejs: at new PackageJsonManager (lib/package-json-manager.ts:23:25)
@aws-cdk/aws-lambda-nodejs: at Function.parcel (lib/bundling.ts:141:32)
@aws-cdk/aws-lambda-nodejs: at Object.<anonymous>.test (test/bundling.test.ts:31:12) This sure looks like a race condition... |
See https://github.com/aws/cdk-ops/pull/887 (Will fail until this is merged)
By submitting this pull request, I confirm that my contribution is made under the terms of the Apache-2.0 license