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.
 
 
 
 
 
 

6 lines
307 B

# Passwordless sudo for all users
# Bazel docker sandbox and bazel RBE run scripts under docker
# as a regular user, but sometimes we need to be
# able to do something with root privileges.
RUN apt-get update && apt-get install -y sudo && apt-get clean
RUN echo 'ALL ALL=(ALL) NOPASSWD:ALL' >> /etc/sudoers