diff options
author | Tim Emiola <temiola@google.com> | 2015-04-03 15:58:29 -0700 |
---|---|---|
committer | Tim Emiola <temiola@google.com> | 2015-04-03 16:42:17 -0700 |
commit | 0bfdfa126d8793dde37f9ec741cb96fbb9f5a49e (patch) | |
tree | a77783442e7f7e5299da941ef4aa98d58376ed80 /tools/dockerfile/grpc_build_deb/Dockerfile | |
parent | 7cf25a6d58adf8272ddb4fce70d388f32ce663f0 (diff) |
Simplifies the work needed to create a new deb
- automates much of the workflow for building a deb package
- adds a version.txt file that is used configure the version on the deb package
* updates the Dockerfile to make use of this
Diffstat (limited to 'tools/dockerfile/grpc_build_deb/Dockerfile')
-rw-r--r-- | tools/dockerfile/grpc_build_deb/Dockerfile | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/tools/dockerfile/grpc_build_deb/Dockerfile b/tools/dockerfile/grpc_build_deb/Dockerfile index 24ffc7379c..cf8da594e9 100644 --- a/tools/dockerfile/grpc_build_deb/Dockerfile +++ b/tools/dockerfile/grpc_build_deb/Dockerfile @@ -30,6 +30,9 @@ # Dockerfile to build Debian packages for gRPC C core. FROM grpc/base +# Add the file containing the gRPC version +ADD version.txt version.txt + # Install dependencies RUN apt-get update && apt-get install -y lintian |