Skip to content
New issue

Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.

By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.

Already on GitHub? Sign in to your account

Update Dockerfile #154

Open
wants to merge 14 commits into
base: main
Choose a base branch
from
Prev Previous commit
Next Next commit
Fix mistake in version name
  • Loading branch information
mdpiper committed Sep 27, 2024
commit 3f55f4404ef26c4d5ea78c8b3a285f9f0ee027bb
2 changes: 1 addition & 1 deletion Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -23,7 +23,7 @@ RUN apt-get update && apt-get install -y \
&& rm -rf /var/lib/apt/lists/*

# Build grpc from source
RUN git clone -b ${GRPC_VERSION} --depth 1 https://github.com/grpc/grpc /opt/grpc
RUN git clone -b v${GRPC_VERSION} --depth 1 https://github.com/grpc/grpc /opt/grpc
WORKDIR /opt/grpc
RUN git submodule update --init --recursive
WORKDIR /opt/grpc/cmake/_build
Expand Down