Skip to content

Commit f395d90

Browse files
committed
grpc
1 parent f8c9a40 commit f395d90

File tree

1 file changed

+9
-4
lines changed

1 file changed

+9
-4
lines changed

.devcontainer/Dockerfile.dev

Lines changed: 9 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -5,16 +5,21 @@ ARG GRPC_VERSION=v1.55.0
55
COPY ci/setup_googletest.sh /opt/ci/setup_googletest.sh
66
COPY ci/setup_ci_environment.sh /opt/ci/setup_ci_environment.sh
77
COPY ci/setup_cmake.sh /opt/ci/setup_cmake.sh
8+
COPY ci/install_abseil.sh /opt/ci/install_abseil.sh
9+
COPY ci/install_protobuf.sh /opt/ci/install_protobuf.sh
810
COPY ci/setup_grpc.sh /opt/ci/setup_grpc.sh
11+
COPY ci/fix-abseil-cpp-issue-1536.patch /opt/ci/fix-abseil-cpp-issue-1536.patch
912

1013
RUN apt update && apt install -y wget \
1114
ninja-build \
1215
libcurl4-openssl-dev
1316

14-
RUN bash /opt/ci/setup_ci_environment.sh \
15-
&& bash /opt/ci/setup_cmake.sh \
16-
&& bash /opt/ci/setup_googletest.sh \
17-
&& bash /opt/ci/setup_grpc.sh -r ${GRPC_VERSION}
17+
RUN cd /opt/ci && bash setup_ci_environment.sh
18+
RUN cd /opt/ci && bash setup_cmake.sh
19+
RUN cd /opt && bash ci/setup_googletest.sh \
20+
&& bash ci/install_abseil.sh \
21+
&& bash ci/install_protobuf.sh \
22+
&& bash ci/setup_grpc.sh -p protobuf -p abseil-cpp -r ${GRPC_VERSION}
1823

1924
ADD https://github.com/bazelbuild/bazelisk/releases/download/v1.22.1/bazelisk-linux-amd64 /usr/local/bin
2025

0 commit comments

Comments
 (0)