-
Notifications
You must be signed in to change notification settings - Fork 19
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
Support to build with Docker container #13
Conversation
replace PR #9 Add a Dockerfile for project |
Maybe add a readme what this is used by or what it is for?
|
ci/README.md
Outdated
@@ -0,0 +1,29 @@ | |||
# Developer use of CI Docker images | |||
|
|||
Two flavors of Envoy Docker images, based on Ubuntu and CentOS Linux, are built. |
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.
did you mean to say envoy here?
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.
Oops, just copy the text form Envoy :)
ci/README.md
Outdated
|
||
```sh | ||
$ cd ci | ||
$ ./build-image.sh # Wait patiently for quite some time |
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.
does this emit something to console when complete? Does a built binary exist at a known path on the image when complete? Answers to these questions could be in this README
thanks, so I can use this image to test code changes and/or build a binary that can be found at the path dist/zipkin-cpp-0.3.1-Linux-x86_64.tar.gz once the build is done. nice! |
Sure, but it seems you need use |
I will try this locally |
wondering if the build also makes the examples? If so, it could be worth mentioning as people could try them (possibly by running the resulting container!) |
slight glitch running locally as it fails a unit test
|
Seems caused by missing librdkafka C library, it should be fixed in You may try to use the $ ./build-dist.sh git:feature/docker-build |
Support to build with Docker container