diff --git a/.circleci/Dockerfile b/.circleci/Dockerfile index 46d8d6fb42d..9274b1f0601 100644 --- a/.circleci/Dockerfile +++ b/.circleci/Dockerfile @@ -1,4 +1,4 @@ -FROM golang:1.14.2 +FROM golang:1.14.3 # Warm apt cache and install dependencies # bzip2 is required by the node_tests (to extract its dependencies). @@ -17,7 +17,7 @@ RUN echo -e '#!/bin/bash\njava -jar /usr/local/bin/swagger-codegen-cli.jar "$@"' chmod +x /usr/local/bin/swagger-codegen # Install protoc -ENV PROTOC_VERSION=3.10.1 +ENV PROTOC_VERSION=3.12.0 RUN wget https://github.com/google/protobuf/releases/download/v${PROTOC_VERSION}/protoc-${PROTOC_VERSION}-linux-x86_64.zip \ -O /protoc-${PROTOC_VERSION}-linux-x86_64.zip && \ unzip /protoc-${PROTOC_VERSION}-linux-x86_64.zip -d /usr/local/ && \