Skip to content

Commit 2e1abd2

Browse files
committed
Dockerfile: Fix grpc-gateway proto dependency installation
1 parent 2f6265d commit 2e1abd2

File tree

1 file changed

+4
-4
lines changed

1 file changed

+4
-4
lines changed

Dockerfile

Lines changed: 4 additions & 4 deletions
Original file line numberDiff line numberDiff line change
@@ -160,10 +160,10 @@ ARG GOOGLE_API_VERSION
160160
RUN mkdir -p ${GOPATH}/src/github.com/googleapis/googleapis && \
161161
curl -sSL https://api.github.com/repos/googleapis/googleapis/tarball/${GOOGLE_API_VERSION} | tar xz --strip 1 -C ${GOPATH}/src/github.com/googleapis/googleapis && \
162162
cd ${GOPATH}/src/github.com/googleapis/googleapis && \
163-
install -D ./google/api/annotations.proto /out/usr/include/google/api && \
164-
install -D ./google/api/field_behavior.proto /out/usr/include/google/api && \
165-
install -D ./google/api/http.proto /out/usr/include/google/api && \
166-
install -D ./google/api/httpbody.proto /out/usr/include/google/api
163+
install -D ./google/api/annotations.proto /out/usr/include/google/api/annotations.proto && \
164+
install -D ./google/api/field_behavior.proto /out/usr/include/google/api/field_behavior.proto && \
165+
install -D ./google/api/http.proto /out/usr/include/google/api/http.proto && \
166+
install -D ./google/api/httpbody.proto /out/usr/include/google/api/httpbody.proto
167167

168168

169169
FROM rust:${RUST_VERSION}-alpine as rust_builder

0 commit comments

Comments
 (0)