Skip to content
Snippets Groups Projects
Commit 6e8d15e7 authored by donnadionne's avatar donnadionne
Browse files

Merge pull request #708 from jtattermusch/deb_on_docker

Building of Debian packages on Docker
parents f26f2191 f8395031
No related branches found
No related tags found
No related merge requests found
...@@ -35,7 +35,13 @@ mkdir -p $deb_dest ...@@ -35,7 +35,13 @@ mkdir -p $deb_dest
version='0.8.0.0' version='0.8.0.0'
arch=`uname -p` if [ -f /.dockerinit ]; then
# We're in Docker where uname -p returns "unknown".
arch=x86_64
else
arch=`uname -p`
fi
if [ $arch != "x86_64" ] if [ $arch != "x86_64" ]
then then
echo Unsupported architecture. echo Unsupported architecture.
...@@ -77,13 +83,14 @@ do ...@@ -77,13 +83,14 @@ do
# create symlinks to shared libraries # create symlinks to shared libraries
for libname in $arch_lib_dir/*.a for libname in $arch_lib_dir/*.a
do do
base=`basename -s .a $libname` base=`basename $libname .a`
ln -s $base.so.$version $arch_lib_dir/$base.so ln -s $base.so.$version $arch_lib_dir/$base.so
done done
fi fi
# Adjust mode for some files in the package # Adjust mode for some files in the package
find $tmp_dir/$pkg_name -type d | xargs chmod 755 find $tmp_dir/$pkg_name -type d | xargs chmod 755
find $tmp_dir/$pkg_name -type d | xargs chmod a-s
find $tmp_dir/$pkg_name -type f | xargs chmod 644 find $tmp_dir/$pkg_name -type f | xargs chmod 644
chmod 755 $tmp_dir/$pkg_name/DEBIAN/{postinst,postrm} chmod 755 $tmp_dir/$pkg_name/DEBIAN/{postinst,postrm}
......
# 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'
# Dockerfile for gRPC Ruby, but using Debian packages for gRPC C core.
FROM grpc/ruby_base
# Pull the latest sources
RUN cd /var/local/git/grpc \
&& git pull --recurse-submodules \
&& git submodule update --init --recursive
# Make sure we don't rely on things that shouldn't be there.
RUN make clean -C /var/local/git/grpc
# Debian packages need to be supplied externally
ADD libgrpc_amd64.deb libgrpc_amd64.deb
ADD libgrpc-dev_amd64.deb libgrpc-dev_amd64.deb
# Install the C core .deb packages
RUN /bin/bash -l -c 'dpkg -i libgrpc_amd64.deb libgrpc-dev_amd64.deb'
# Build ruby gRPC and run its tests
RUN /bin/bash -l -c 'cd /var/local/git/grpc/src/ruby && bundle && rake'
# Add a cacerts directory containing the Google root pem file, allowing the
# ruby client to access the production test instance
ADD cacerts cacerts
# Add a service_account directory containing the auth creds file
ADD service_account service_account
# Specify the default command such that the interop server runs on its known
# testing port
CMD ["/bin/bash", "-l", "-c", "ruby /var/local/git/grpc/src/ruby/bin/interop/interop_server.rb --use_tls --port 8060"]
GRPC RUBY Base Dockerfile (Debian package version)
========================
Dockerfile for creating the Ruby gRPC development Docker instance.
Uses gRPC C core Debian packages instead of installing it using make.
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment