mirror of https://github.com/grpc/grpc.git
The C based gRPC (C++, Python, Ruby, Objective-C, PHP, C#)
https://grpc.io/
You can not select more than 25 topics
Topics must start with a letter or number, can include dashes ('-') and can be up to 35 characters long.
14 lines
439 B
14 lines
439 B
10 years ago
|
# 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'
|