Merge pull request #23531 from stanley-cheung/fix-php-build-from-source

Fix php build from source
reviewable/pr22757/r8
Stanley Cheung 4 years ago committed by GitHub
commit 536ecb4196
No known key found for this signature in database
GPG Key ID: 4AEE18F83AFDEB23
  1. 4
      src/php/docker/grpc-src/Dockerfile
  2. 4
      templates/src/php/docker/grpc-src/Dockerfile.template

@ -32,13 +32,13 @@ WORKDIR /github/grpc
COPY . .
RUN make && make install
RUN make shared_c static_c
WORKDIR /github/grpc/src/php/ext/grpc
RUN phpize && \
./configure --enable-tests && \
GRPC_LIB_SUBDIR=libs/opt ./configure --enable-grpc=/github/grpc --enable-tests && \
make && \
make install

@ -31,13 +31,13 @@
COPY . .
RUN make && make install
RUN make shared_c static_c
WORKDIR /github/grpc/src/php/ext/grpc
RUN phpize && ${'\\'}
./configure --enable-tests && ${'\\'}
GRPC_LIB_SUBDIR=libs/opt ./configure --enable-grpc=/github/grpc --enable-tests && ${'\\'}
make && ${'\\'}
make install

Loading…
Cancel
Save