Upgradin unzip version
Upgrading kubernetes APIs
Change-Id: I70c4acb8b1d1edb62d36dfe03244a9aa0ee8b381
diff --git a/Dockerfile b/Dockerfile
index 0f92fe3..45411fb 100644
--- a/Dockerfile
+++ b/Dockerfile
@@ -26,12 +26,12 @@
git=1:2.20.1-2+deb10u1 \
gcc=4:8.3.0-1 \
curl=7.64.0-4 \
- unzip=6.0-23+deb10u1
+ unzip=6.0-23+deb10u2
RUN go get -v "github.com/golang/protobuf/protoc-gen-go@v1.3.2"
RUN mkdir /app
COPY . /app/
WORKDIR /app
-RUN curl -L -o /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip
+RUN curl -L -o /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip
RUN mkdir /tmp/protoc3
RUN echo "$PROTOC_SHA256SUM /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip" | sha256sum -c - \
&& unzip /tmp/protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /tmp/protoc3 \