Skip to content

Commit

Permalink
Dockerfile: Fix grpc-gateway proto dependency installation
Browse files Browse the repository at this point in the history
  • Loading branch information
rvolosatovs committed Mar 26, 2021
1 parent 2f6265d commit 2e1abd2
Showing 1 changed file with 4 additions and 4 deletions.
8 changes: 4 additions & 4 deletions Dockerfile
Original file line number Diff line number Diff line change
Expand Up @@ -160,10 +160,10 @@ ARG GOOGLE_API_VERSION
RUN mkdir -p ${GOPATH}/src/github.com/googleapis/googleapis && \
curl -sSL https://api.github.com/repos/googleapis/googleapis/tarball/${GOOGLE_API_VERSION} | tar xz --strip 1 -C ${GOPATH}/src/github.com/googleapis/googleapis && \
cd ${GOPATH}/src/github.com/googleapis/googleapis && \
install -D ./google/api/annotations.proto /out/usr/include/google/api && \
install -D ./google/api/field_behavior.proto /out/usr/include/google/api && \
install -D ./google/api/http.proto /out/usr/include/google/api && \
install -D ./google/api/httpbody.proto /out/usr/include/google/api
install -D ./google/api/annotations.proto /out/usr/include/google/api/annotations.proto && \
install -D ./google/api/field_behavior.proto /out/usr/include/google/api/field_behavior.proto && \
install -D ./google/api/http.proto /out/usr/include/google/api/http.proto && \
install -D ./google/api/httpbody.proto /out/usr/include/google/api/httpbody.proto


FROM rust:${RUST_VERSION}-alpine as rust_builder
Expand Down

0 comments on commit 2e1abd2

Please sign in to comment.