From 2e1abd22613082344dc8c611049b817de0328868 Mon Sep 17 00:00:00 2001 From: Roman Volosatovs Date: Fri, 26 Mar 2021 23:42:05 +0100 Subject: [PATCH] Dockerfile: Fix grpc-gateway proto dependency installation --- Dockerfile | 8 ++++---- 1 file changed, 4 insertions(+), 4 deletions(-) diff --git a/Dockerfile b/Dockerfile index b61f670d..c6212a40 100644 --- a/Dockerfile +++ b/Dockerfile @@ -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