File tree Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Expand file tree Collapse file tree 1 file changed +3
-2
lines changed Original file line number Diff line number Diff line change @@ -18,13 +18,14 @@ RUN git clone --depth 1 https://github.com/grpc/grpc.git . \
1818 && git submodule update --init --recursive --depth 1 \
1919 && mkdir -p cmake/build && cd cmake/build \
2020 # Build the C++ Core (Static Lib)
21- && cmake ../.. -DgRPC_INSTALL=ON -DgRPC_BUILD_TESTS=OFF \
21+ && cmake ../.. -DCMAKE_BUILD_TYPE=Release - DgRPC_INSTALL=ON -DgRPC_BUILD_TESTS=OFF -DgRPC_PHP_SATELLITE_SERVICES=ON \
2222 && make -j$(nproc) \
2323 && make install \
24+ && ldconfig \
2425 # Build the PHP Extension, providing the path to the C++ core libs
2526 && cd ../../src/php/ext/grpc \
2627 && phpize \
27- && ./configure --with-grpc=/usr/local \
28+ && ./configure --with-grpc \
2829 && make -j$(nproc) \
2930 && cp modules/grpc.so /tmp/grpc.so
3031
You can’t perform that action at this time.
0 commit comments