Commit
·
de50fb2
1
Parent(s):
f5a891f
fix issue with owners in protobuf download
Browse files- Dockerfile +1 -1
Dockerfile
CHANGED
|
@@ -24,7 +24,7 @@ RUN apt-get update && \
|
|
| 24 |
# install protobuf
|
| 25 |
WORKDIR /tmp
|
| 26 |
RUN curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOBUF_VERSION}/protobuf-cpp-3.13.0.tar.gz && \
|
| 27 |
-
tar -xzf protobuf-cpp-${PROTOBUF_VERSION}.tar.gz && \
|
| 28 |
cd protobuf-${PROTOBUF_VERSION} && \
|
| 29 |
./configure && make -j$(nproc) && make install && ldconfig
|
| 30 |
|
|
|
|
| 24 |
# install protobuf
|
| 25 |
WORKDIR /tmp
|
| 26 |
RUN curl -LO https://github.com/protocolbuffers/protobuf/releases/download/v${PROTOBUF_VERSION}/protobuf-cpp-3.13.0.tar.gz && \
|
| 27 |
+
tar --no-same-owner -xzf protobuf-cpp-${PROTOBUF_VERSION}.tar.gz && \
|
| 28 |
cd protobuf-${PROTOBUF_VERSION} && \
|
| 29 |
./configure && make -j$(nproc) && make install && ldconfig
|
| 30 |
|