mirror of https://github.com/grpc/grpc.git
parent
6b2b05ee1c
commit
5d7e05acb7
1 changed files with 13 additions and 0 deletions
@ -0,0 +1,13 @@ |
||||
# Dockerfile to build Debian packages for gRPC C core. |
||||
FROM grpc/base |
||||
|
||||
# Install dependencies |
||||
RUN apt-get update && apt-get install -y lintian |
||||
|
||||
# Get the source from GitHub |
||||
RUN git clone git@github.com:grpc/grpc.git /var/local/git/grpc |
||||
RUN cd /var/local/git/grpc && \ |
||||
git pull --recurse-submodules && \ |
||||
git submodule update --init --recursive |
||||
|
||||
RUN /bin/bash -l -c 'cd /var/local/git/grpc/tools/distpackages && ./build_deb_packages.sh' |
Loading…
Reference in new issue